I am trying to make multi auth but i just cannot seem to make it work. I am using custom middleware instead of RedirectIfAuthenticated middleware but guard always returns null in my middleware but …
Tag: guard
Laravel 6.x new password.confirm middleware doesn’t work with custom guard
a new password.confirm feature has been added to the laravel 6.2 framework. I have a fresh laravel 6.18.8 installation, I have done multi-authentication based on guard. I want to run password.confirm …
Auth::check() returns false after successful login attempt
I’m trying to make a custom guard and I am successful, but when I attempt a login using the guard the $this->attemptLogin($request) returns true but after directly afterwards the Auth::check() …