PHP Class App\Notifications\Frontend\Auth\UserNeedsPasswordReset

Inheritance: extends Illuminate\Notifications\Notification, use trait Illuminate\Bus\Queueable
Show file Open project: rappasoft/laravel-5-boilerplate

Public Properties

Property Type Description
$token string The password reset token.

Public Methods

Method Description
__construct ( $token ) UserNeedsPasswordReset constructor.
toMail ( mixed $notifiable ) : Illuminate\Notifications\Messages\MailMessage Build the mail representation of the notification.
via ( mixed $notifiable ) : array | string Get the notification's channels.

Method Details

__construct() public method

UserNeedsPasswordReset constructor.
public __construct ( $token )
$token

toMail() public method

Build the mail representation of the notification.
public toMail ( mixed $notifiable ) : Illuminate\Notifications\Messages\MailMessage
$notifiable mixed
return Illuminate\Notifications\Messages\MailMessage

via() public method

Get the notification's channels.
public via ( mixed $notifiable ) : array | string
$notifiable mixed
return array | string

Property Details

$token public property

The password reset token.
public string $token
return string