reaction = $reaction; } /** * Execute the job. * * @return void */ public function handle() { // Send the email to the recipient (person receiving the reaction) Mail::to($this->reaction->getReactant()->getReactable()->email)->send(new ReactionCreatedMail($this->reaction)); } }