PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
core
/
acl
/
src
/
Notifications
<?php namespace Botble\ACL\Notifications; use EmailHandler; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; use Illuminate\Support\HtmlString; use Throwable; class ResetPasswordNotification extends Notification { /** * The password reset token. * * @var string */ public $token; /** * Create a notification instance. * * @param string $token */ public function __construct($token) { $this->token = $token; } /** * Get the notification's channels. * * @param mixed $notifiable * @return array|string */ public function via($notifiable) { return ['mail']; } /** * Build the mail representation of the notification. * * @param mixed $notifiable * @return MailMessage * @throws Throwable */ /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { EmailHandler::setModule('acl') ->setVariableValue('reset_link', route('access.password.reset', ['token' => $this->token])); $template = 'password-reminder'; $content = EmailHandler::prepareData(EmailHandler::getTemplateContent($template, 'core')); return (new MailMessage) ->view(['html' => new HtmlString($content)]) ->subject(EmailHandler::getTemplateSubject($template)); } }
[-] ResetPasswordNotification.php
[edit]
[+]
..