File "AdminNotificationEmailSeeder.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/database/seeders/AdminNotificationEmailSeeder.php
File size: 454 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Database\Seeders;

use App\Models\SiteSetting;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

class AdminNotificationEmailSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        SiteSetting::create([
            'key' => 'Notification Email',
            'value' => 'orders@jmtrophies.com',
        ]);
    }
}