/Laravel-Routes-Command

Want something similar to Rails' "rake routes" for Laravel?

Primary LanguagePHP

To install this package, simply add 'JeffreyWay\RoutesCommand\RoutesCommandServiceProvider' to your list of service provdiers in app/config/app.php.

That's it! From the Terminal, run php artisan routes to view all of your app's registered routes.

routes command

The output is separated into three columns:

  • URI - HTTP method and route
  • Name - Is a named route associated?
  • Action - Which method (or closure) is responsible for this route?