token = $token; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via($notifiable) { return ['mail']; } /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { $logo = config('SITE_SETUP')->site_logo; $site_name = config('SITE_SETUP')->site_name; $reset_link = route('password.reset', $this->token, true); return (new MailMessage) ->markdown('email.user.passwordreset',compact('logo','site_name','reset_link')); } }