This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?php
namespaceApp\Notifications;
useIlluminate\Bus\Queueable;
useIlluminate\Contracts\Queue\ShouldQueue;
useIlluminate\Notifications\Messages\MailMessage;
useIlluminate\Notifications\Notification;
classCancelEmailNotifyextendsNotification
{
useQueueable;
protected$visitData;
/**
* Create a new notification instance.
*
* @param array $visitData
*/
publicfunction__construct($visitData)
{
$this->visitData=$visitData;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
publicfunctionvia($notifiable)
{
return['mail'];
}
/**
* Get the mail representation of the notification.