芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/database/seeders/EmailSettingSeeder.php
'User Registration/Added by Admin', 'send_email' => 'yes', 'slug' => str_slug('User Registration/Added by Admin') ]); // When employee is added to project \App\Models\EmailNotificationSetting::create([ 'setting_name' => 'Employee Assign to Project', 'send_email' => 'yes', 'slug' => str_slug('Employee Assign to Project') ]); // When notice published by admin \App\Models\EmailNotificationSetting::create([ 'setting_name' => 'New Notice Published', 'send_email' => 'no', 'slug' => str_slug('New Notice Published') ]); // When user is assigned to a task \App\Models\EmailNotificationSetting::create([ 'setting_name' => 'User Assign to Task', 'send_email' => 'yes', 'slug' => str_slug('User Assign to Task') ]); } }