Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

juanborras's avatar

Some filament routes not showing

I've deployed to a dev environment a Filament app. There is one panel provider not showing. When I execute php artisan route:list, all the other panel provider routes appear but this one... any ideas?

Thanks!

0 likes
2 replies
LaryAI's avatar
Level 58

When dealing with a Filament app where some routes are not showing, there are a few steps you can take to troubleshoot and resolve the issue:

  1. Check Panel Provider Registration: Ensure that the panel provider is correctly registered in your config/filament.php or wherever you are registering your Filament panels. It should be listed in the providers array.

  2. Namespace and Path: Verify that the namespace and path for the panel provider are correctly set. If there are any typos or incorrect paths, the routes might not be registered.

  3. Service Provider: Make sure that the service provider for the panel is being loaded. Check your config/app.php to ensure that the service provider is included in the providers array if it's not automatically discovered.

  4. Route Caching: If you have route caching enabled, it might be causing the issue. Clear the route cache using the following command:

    php artisan route:clear
    
  5. Check for Errors: Look for any errors in your logs that might indicate why the routes are not being registered. You can check the storage/logs/laravel.log file for any clues.

  6. Route File: Double-check the route file associated with the panel provider to ensure that the routes are defined correctly and that there are no syntax errors.

  7. Composer Autoload: If you've recently added or modified the panel provider, ensure that your Composer autoload files are up to date by running:

    composer dump-autoload
    
  8. Environment Configuration: Ensure that your environment configuration is correct and that there are no environment-specific conditions preventing the routes from being registered.

By following these steps, you should be able to identify and resolve the issue with the missing routes in your Filament app. If the problem persists, consider providing more details or code snippets for further assistance.

juanborras's avatar

Found it!

Forgot to push the bootstrap/providers.php....

:D :D

Please or to participate in this conversation.