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