assets = $params; $this->threshold = $threshold; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { $notifyBy = []; $notifyBy[]='mail'; return $notifyBy; } public function toSlack($notifiable) { } /** * Get the mail representation of the notification. * * @param mixed $asset * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($params) { $message = (new MailMessage)->markdown('notifications.markdown.report-expiring-assets', [ 'assets' => $this->assets, 'threshold' => $this->threshold, ]) ->subject(trans('mail.Expiring_Assets_Report')); return $message; } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }