pirep = $pirep; $this->setMailable( 'PIREP Accepted!', 'notifications.mail.pirep.accepted', ['pirep' => $this->pirep] ); } public function via($notifiable) { return ['mail']; } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable) { return [ 'pirep_id' => $this->pirep->id, 'user_id' => $this->pirep->user_id, ]; } }