*/ public function via(object $notifiable): array { return ['mail']; } /** * Get the mail representation of the notification. */ public function toMail(object $notifiable): Mailable { return (new BookingRejectedEmail($this->consultation, $this->rejectionReason)) ->to($notifiable->email); } /** * Get the array representation of the notification. * * @return array */ public function toArray(object $notifiable): array { return [ 'type' => 'booking_rejected', 'consultation_id' => $this->consultation->id, ]; } }