user = $user; } /** * Execute the job. * * @return void */ public function handle() { $email = config('monica.email_new_user_notification'); if (! empty($email)) { Notification::route('mail', $email) ->notify(new NewUserAlert($this->user)); } } }