*/ public function via(object $notifiable): array { return ['database']; } /** * @return array */ public function toArray(object $notifiable): array { return [ 'title' => $this->title, 'message' => $this->message, 'url' => $this->url, 'icon' => $this->icon, ]; } }