app\Models\Access\User\Traits\UserSendPasswordReset::sendPasswordResetNotification PHP 메소드

sendPasswordResetNotification() 공개 메소드

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