Laravel's auth class requires a database in order for it to be used right?
Does that consider database coming from the server having their own authentication process ? Cause I want to use Laravel's Auth class methods where I can distinguish if the user is logged in or not so that I can prevent them(who have logged out) from clicking the back button.
Auth::attempt()will it still work when I useAuth::check()?