/home/techb158/ileadtechnology.com/SSM/app/Notifications
NameSizeModeActions
Contact.php14690644editdlrm
PasswordReset.php18590644editdlrm
PasswordResetted.php16570644editdlrm
TwoFactorSecurity.php14550644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Notifications/Contact.php (1469B)
visitor_message = $visitor_message; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * To send Password Reset mail after request * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { return (new MailMessage) ->subject('Visitor Message | '.config('app.name')) ->greeting('Hello') ->line('New message received from visitor!') ->action('Check Message', config('app.url')) ->line('Thank you!'); } /** * Get the array representation of the notification. * * @param mixed $notifiable * @return array */ public function toArray($notifiable) { return [ // ]; } }