Strange Issue with Filament and API Routes
Hi,
I have encountered strange issue when i update profile password and press button in UserMenu to signout i get Route login not defined error
Any idea why it is mixing them up?
9 Replies
What does filament have to do with an api?
Filament doesn’t have anything to do with rest api.
Not directly with api, but evertime i update profile and try to logout of filament admin panel it throws that login route has not been defined.. It started happening since I have added api routes.. Hence question.. Maybe i formatted question wrong
Your api should not be returning a redirect.
But that’s not a filament issue.
Maybe cause route name login not found.
Sure, but apis should never return a redirect
Yeah agreed, api is not returning redirect.
But somehow i am redirected to the api/login route, without mentioning redirect anywhere in code..
A rest api auth flow has nothing to do with filament.
What I’m saying is the panel doesn’t make sense in the context of a rest api.
So if you’re getting a login or logout error, it’s because you aren’t handling the authentication/authorization correctly.
Nothing to do with filament.
Laravel sanctum might be what you are looking for. But filament has no concept of rest api. It’s just laravel at that point.
Thanks awcodes, will continue to debug..
Check the answer from Kaesa
Laravel expects a route called
login
after logout.