redirect after login and logout
redirect after login and logout I don't how how chang path to redirect my website after login and logout. In first example I found that I must change RedirectIfAuthenticated . But If I have RedirectIfAuthenticated public function handle($request, Closure $next, $guard = null) { if (Auth::guard($guard)->check()) { return redirect()->route('myroute'); } return $next($request); } which doesn't redirect me when I want it to. And where can I change the redirect place after logout? post your controller please. – Adnan Mumtaz Jul 2 at 6:40 Which controller? – MrBelongsTo Jul 2 at 7:17 Login controller – Adnan Mumt...