laravel 7 redirect to intended url after login code example
Example: redirect to attempting url after login laravel
The intended method on the redirector will redirect the user to the URL they
were attempting to access before being intercepted by the authentication
middleware. A fallback URI may be given to this method in case the intended
destination is not available.
if (Auth::attempt($credentials)) {
// Authentication passed...
return redirect()->intended('dashboard');
}