User & Admin panel
Hello. I have created my User and Admin panel. I want http://127.0.0.1:8000/user to go directly to dashboard page without login page. How can I do this?
8 Replies
Try make the login(null)
Route [login] not defined. I get this error when I type login(null).
What do you mean without login page? First, user needs to be authenticated
I don't want to have a login for the user panel
Maybe make your own custom middleware
I would like to ask if it is possible without writing custom middleware. With filament
User needs to be authenticated. How you will do it doesn't matter. Panels can't be accessed by guests
Your can authenticate a demo user on that page
auth()->login($user)
and redirect to the dashboard you want.