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