notificationInfo = $notificationInfo; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return $this->notificationInfo['via']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $data = $this->notificationInfo; $mail = (new MailMessage) ->subject($data['subject']) ->view( 'emails.plain_html', ['content' => $data['body']] ); return $mail; } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toDatabase($notifiable) { return [ 'msg' => $this->notificationInfo['subject'], ]; } }