user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via() { return ['mail']; } /** * Get the mail representation of the notification. * * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail() { $message = (new MailMessage)->markdown('notifications.markdown.user-inventory', [ 'assets' => $this->user->assets, 'accessories' => $this->user->accessories, 'licenses' => $this->user->licenses, ]) ->subject(trans('mail.inventory_report')); return $message; } }