/
home
/
corsairdevelopme
/
public_html
/
amplivo-console
/
app
/
Notifications
/
Upload File
HOME
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class ResetPasswordNotification extends Notification { use Queueable; protected $details; /** * Create a new notification instance. * * @return void */ public function __construct($details) { $this->details = $details; } /** * Get the notification's delivery channels. * * @return array */ public function via() { return ['mail']; } /** * Get the mail representation of the notification. * * @return MailMessage */ public function toMail() { $details = $this->details; return (new MailMessage) ->view('backend.email.tmp-reset-password', compact('details')); } /** * Get the array representation of the notification. * * @return array */ public function toArray() { return [ // ]; } }