X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/core/acl/src/Notifications
home
/
gfecatvj
/
sites
/
restate
/
platform
/
core
/
acl
/
src
/
Notifications
/
📁
..
📄
ResetPasswordNotification.php
(1.02 KB)
Editing: ResetPasswordNotification.php
<?php namespace Botble\ACL\Notifications; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; 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 */ public function toMail($notifiable) { return (new MailMessage) ->view('core/acl::emails.reminder', ['link' => route('access.password.reset', ['token' => $this->token])]); } }
Upload File
Create Folder