Panel Authentication Route not defined
When performing
artisan route:list
, the following are defined:
but when visit the admin login page, the route is not defined?
Route [filament.admin.auth.login] not defined.
1 Reply
I just realised if I manually visit
/admin/login
that it seems to find the route, but then fails with Route [livewire.update] not defined.
, so must have a issue somewhere.
For those of you wondering, I found that I had accidentally removed RouteServiceProvider
from the providers list in app.php
(most likely when adding the custom Provider to the filament plugin I was building). The lesson here is, never let me near a keyboard.