userId = $user->id; } /** * Execute the job. * * @return void */ public function handle() { Mail::to(Settings::settingValue('site.main.email'))->send(new AccountDeleted($this->userId)); } }