/
home
/
techb158
/
ileadtechnology.com
/
SSM
/
app
/
Notifications
/
/home/techb158/ileadtechnology.com/SSM/app/Notifications
mkdir
upload
Name
Size
Mode
Actions
Contact.php
1469
0644
edit
dl
rm
PasswordReset.php
1859
0644
edit
dl
rm
PasswordResetted.php
1657
0644
edit
dl
rm
TwoFactorSecurity.php
1455
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/SSM/app/Notifications/Contact.php
(1469B)
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; class Contact extends Notification { use Queueable; /** * Create a new notification instance. * * @return void */ protected $visitor_message; public function __construct($visitor_message) { $this->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 [ // ]; } }
Save
cmd:
run