Skip to content
Advertisement

How to redirect the user to dashboard if i remove the “/dashboard” from the port server in Laravel? [closed]

My port server is my login interface. * http://127.0.0.1:8000/* That is my login part, after entering my details it will redirect me to my dashboard http://127.0.0.1:8000/dashboard. But if I remove the /dashboard from the url it returns me back to login even when I am still in session and hasn’t yet click the logout button. If I put the /dashboard again I will return to the dashboard because the user is still in session. I want to return to dashboard even I remove /dashboard. How to do that in Laravel?

Advertisement

Answer

  • Middleware can do this work for you. just follow
  1. Firstly, you have to create a middleware.
JavaScript
  1. Register your middleware at kernel:
JavaScript
  1. Call your middleware at your routes or controller which you want to user authenticated can see after they’re login.
JavaScript
  1. Let’s added some codes into middleware that we have created: RedirectIfUserAuthenticated
JavaScript
  • Important: You can added middlware auth to your routes this will work as well if you don’t want to create new one: Locat at: Middlewares/Authenticat.php and custom whatever your want.
JavaScript

Done !

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement