user = $user; } /** * Execute the job. * * @return void */ public function handle() { // It shouldn't need the suspension service, because if it was dispatched, the account was already locked Log::alert('[Worker] Processing account deletion request', [ 'email' => $this->user->email ]); $this->user->delete(); } }