Artisan.page

route:list

List all registered routes

Terminal
php artisan route:list [--json] [--method [METHOD]] [--action [ACTION]] [--name [NAME]] [--domain [DOMAIN]] [--path [PATH]] [--except-path [EXCEPT-PATH]] [-r|--reverse] [--sort [SORT]] [--except-vendor] [--only-vendor]

Options

actionOptional

Filter the routes by action

domainOptional

Filter the routes by domain

except-pathOptional

Do not display the routes matching the given path pattern

except-vendorOptional

Do not display routes defined by vendor packages

jsonOptional

Output the route list as JSON

methodOptional

Filter the routes by method

nameOptional

Filter the routes by name

only-vendorOptional

Only display routes defined by vendor packages

pathOptional

Only show routes matching the given path pattern

reverseOptional

Reverse the ordering of the routes

sortOptional

The column (domain, method, uri, name, action, middleware, definition) to sort by