items = $params; $this->threshold = $threshold; } /** * Get the notification's delivery channels. * * @return array */ public function via() { $notifyBy = ['mail']; return $notifyBy; } /** * Get the mail representation of the notification. * * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail() { $message = (new MailMessage)->markdown( 'notifications.markdown.report-low-inventory', [ 'items' => $this->items, 'threshold' => $this->threshold, ] ) ->subject(trans('mail.Low_Inventory_Report')); return $message; } }