user = $user; } /** * Execute the job. * * @return void */ public function handle() { if ($this->attempts() > 2) { $this->delay(min(30 * $this->attempts(), 300)); } Mail::to($this->user)->send(new DisableUser($this->user)); } }