*/ public function via(object $notifiable): array { return ['mail']; } /** * Get the mail representation of the notification. */ public function toMail(object $notifiable): Mailable { /** @var User $notifiable */ return (new WelcomeEmail($notifiable, $this->password)) ->to($notifiable->email); } /** * Get the array representation of the notification. * * @return array */ public function toArray(object $notifiable): array { return [ 'type' => 'welcome_account', ]; } }