type = $type; $this->message = $message; $this->url = $url; } /** * Get the notification's delivery channels. * * @return array */ public function via(object $notifiable): array { return ['database']; } public function toDatabase($notifiable) { return [ 'type' => $this->type, 'message' => $this->message, 'url' => $this->url, ]; } }