/
home
/
techb158
/
immovalet.com
/
platform
/
core
/
acl
/
src
/
Notifications
/
/home/techb158/immovalet.com/platform/core/acl/src/Notifications
mkdir
upload
Name
Size
Mode
Actions
ResetPasswordNotification.php
1566
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/core/acl/src/Notifications/ResetPasswordNotification.php
(1566B)
<?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)); } }
Save
cmd:
run