Commands.app

php artisan route:list

Development

List all registered routes

Options & Flags
Available options for this command
--name=pattern

Filter by route name

--path=pattern

Filter by path

--method=GET

Filter by HTTP method

Examples
Common usage examples

List all routes

php artisan route:list

Filter routes containing 'user' in name

php artisan route:list --name=user

Show only POST routes

php artisan route:list --method=POST
Related Commands
You might also find these useful