芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Jobs/SendContactFromMessageToAdmin.php
message = $message; } /** * Execute the job. * * @return void */ public function handle() { if (config('system_settings.notify_new_message')) { $system = System::orderBy('id', 'asc')->first(); $system->notify(new NewContactUsMessage($this->message)); } } }