plugin
plugin copied to clipboard
[Feature Request]: Find Controller/Action by route name
Feature Description
Im working on an application with many routes and controllers. Sometimes, when I need to find which controller is being called by a specific route i need to go to my route file, find the path ("/users/{userId}/contracts/{contractId}/files" for exemple) and then cmd+B to go to the controller.
Id like to have a way to search "users contracts" and list all controllers that have "users" and "contracts" in its path.
Sometimes I use the command "php artisan route:list | grep "contracts" to find the Controller