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