FilamentF
Filament2y ago
Jap

Login not working (Production)

I need help fixing my login page, it works on local server with the same setup. I also added session_domain and app_url in env file. When i try to login it keeps redirecting me back to login page.
Solution
Thanks the problem was in livewire. I forgot to remove/comment this line of code in my service app provider.
Livewire::setUpdateRoute(function ($handle) {
    return Route::post('/custom/livewire/update', $handle);
});

Livewire::setScriptRoute(function ($handle) {
    return Route::get('/custom/livewire/livewire.js', $handle);
});

I'm using it to configure livewire's update endpoint if my app is deployed in https://example.com/custom.
Was this page helpful?