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
einnlleinhatt_
Try make the login(null)
YusifHajiyev
YusifHajiyevOP2y ago
Route [login] not defined. I get this error when I type login(null).
krekas
krekas2y ago
What do you mean without login page? First, user needs to be authenticated
YusifHajiyev
YusifHajiyevOP2y ago
I don't want to have a login for the user panel
einnlleinhatt_
Maybe make your own custom middleware
YusifHajiyev
YusifHajiyevOP2y ago
I would like to ask if it is possible without writing custom middleware. With filament
krekas
krekas2y ago
User needs to be authenticated. How you will do it doesn't matter. Panels can't be accessed by guests
Dennis Koch
Dennis Koch2y ago
Your can authenticate a demo user on that page auth()->login($user) and redirect to the dashboard you want.

Did you find this page helpful?