user = $user; } /** * Execute the job. */ public function handle(): void { Mail::to($this->user->email) ->send(new \App\Mail\WelcomeEmail($this->user)); } }