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

kuyawing's avatar

Show list of routes created by a vendor

Hi is there a way to show all routes created by a vendor. For example, i wanted to show all routes created by fortify

php artisan route:list --name=fortify

This does not work.

All possible are:

php artisan route:list --only-vendor php artisan route:list --path=email

These narrow down the results but now what I am looking for.

0 likes
1 reply
Nakov's avatar

You can use grep in order to filter the results:

ex:

php artisan route:list --only-vendor | grep '_debugbar'

Please or to participate in this conversation.