pirep = $pirep; $this->setMailable( 'PIREP Rejected!', 'notifications.mail.pirep.rejected', ['pirep' => $this->pirep] ); } /** * 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, ]; } }