Any route in web.php gives 404
I would like to add a simple route in my Filament app like below:
When I access the
/test
url, Laravel throws an 404 Not Found.
What am I doing wrong?Solution:Jump to solution
I am using multi tenancy, and in that case I needed to set
->tenantRoutePrefix()
on my panel.
Having a prefix, made it so I could define routes in web.php...3 Replies
What is the filament path? /admin ?
Hi maybe you can try
php artisan route:clear
, to clear the route cacheSolution
I am using multi tenancy, and in that case I needed to set
->tenantRoutePrefix()
on my panel.
Having a prefix, made it so I could define routes in web.php