user = $user; $this->setMailable( 'Your registration has been denied', 'notifications.mail.user.rejected', ['user' => $this->user] ); } public function via($notifiable) { return ['mail']; } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable) { return [ 'user_id' => $this->user->id, ]; } }