Adding Custom User Providers: The Authenticatable Contract
<?php
namespace Illuminate\Contracts\Auth;
interface Authenticatable {
public function getAuthIdentifierName();
public function getAuthIdentifier();
public function getAuthPassword();
public function getRememberToken();
public function setRememberToken($value);
public function getRememberTokenName();
}
GetAuthIdentifierName method
Related concepts
→
The Authenticatable Contract
→