Answer the question
In order to leave comments, you need to log in
How can I change the redirect from the home page to the main page when the user visits the login or register page?
How can I change the redirect from the home page to the main page when the user visits the login or register page?
Answer the question
In order to leave comments, you need to log in
Found at random, /app/Http/Middleware RedirectIfAuthenticated.php
public function handle($request, Closure $next, $guard = null)
{
if (Auth::guard($guard)->check()) {
return redirect('/');//тута)
}
return $next($request);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question