osb/app/Notifications/ResetPassword.php

36 lines
888 B
PHP
Raw Normal View History

2020-01-30 10:39:25 +00:00
<?php
namespace App\Notifications;
use App\Models\Site;
2020-01-30 10:39:25 +00:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Auth\Notifications\ResetPassword as ResetPasswordNotification;
use Illuminate\Notifications\Messages\MailMessage;
class ResetPassword extends ResetPasswordNotification implements ShouldQueue
{
use Queueable;
2020-01-30 10:39:25 +00:00
/**
* Build the mail representation of the notification.
*
* @param mixed $notifiable
* @return MailMessage
*/
public function toMail($notifiable): MailMessage
{
$site = Site::findOrFail($notifiable->site_id);
2020-01-30 10:39:25 +00:00
if (static::$toMailCallback) {
return call_user_func(static::$toMailCallback, $notifiable, $this->token);
}
return (new MailMessage)
->markdown('email.user.passwordreset',[
'site'=>$site,
'user'=>$notifiable,
'reset_link'=>route('password.reset',$this->token,true),
]);
}
2020-01-30 10:39:25 +00:00
}