app\Models\Access\User\Traits\UserSendPasswordReset::sendPasswordResetNotification PHP Method

sendPasswordResetNotification() public method

Send the password reset notification.
public sendPasswordResetNotification ( string $token ) : void
$token string
return void
    public function sendPasswordResetNotification($token)
    {
        $this->notify(new UserNeedsPasswordReset($token));
    }
UserSendPasswordReset