title = $title; $this->content = $content; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * * @return array */ public function via($notifiable): array { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * * @return MailMessage */ public function toMail($notifiable): MailMessage { return (new MailMessage)->subject($this->title)->markdown('mail.common', [ 'title' => $this->title, 'content' => $this->content, ]); } /** * Get the array representation of the notification. * * @param mixed $notifiable * * @return array */ public function toArray($notifiable): array { return [ // ]; } }