AuthenticationException::guards()

array guards() Get the guards that were checked. Return Value array

AuthenticatesUsers::username()

string username() Get the login username to be used by the controller. Return Value string

AuthenticateWithBasicAuth::handle()

mixed handle(Request $request, Closure $next, string|null $guard = null) Handle an incoming request. Parameters Request $request Closure $next string|null $guard Return Value mixed

AuthenticateWithBasicAuth::__construct()

void __construct(Factory $auth) Create a new middleware instance. Parameters Factory $auth Return Value void

AuthenticateWithBasicAuth

AuthenticateWithBasicAuth class AuthenticateWithBasicAuth (View source) Methods void __construct(Factory $auth) Create a new middleware instance. mixed handle(Request $request, Closure $next, string|null $guard = null) Handle an incoming request.

AuthenticatesUsers::showLoginForm()

Response showLoginForm() Show the application's login form. Return Value Response

AuthenticatesUsers::logout()

Response logout(Request $request) Log the user out of the application. Parameters Request $request Return Value Response

AuthenticatesUsers::redirectPath()

string redirectPath() Get the post register / login redirect path. Return Value string

AuthenticatesUsers::login()

Response login(Request $request) Handle a login request to the application. Parameters Request $request Return Value Response

AuthenticatesUsers

AuthenticatesUsers trait AuthenticatesUsers (View source) Traits RedirectsUsers ThrottlesLogins