user = $user; $this->notification = $notification; $this->onQueue('jobs'); } /** * Execute the job. * * @return void */ public function handle() { $this->user->notify($this->notification); } }