Create an HTML graphical summary of all the routes of your Laravel project. The package also checks for the binding type of each method's argument, returning an error if the parameter name specified in the route definition does not match the one in the contoller.
The routes are exported in both Html/Json files where they are represented in the following format:
[
{
"uri": "\/",
"name": "homepage",
"controller": "App\\Http\\Controllers\\HomeController",
"controller_method": "index",
"parameters": [],
"methods": [
"GET"
],
"middleware": [
"web"
]
},
{
"uri": "new",
"name": "new_foo",
"controller": "App\\Http\\Controllers\\Auth\\RegisterController",
"controller_method": "index",
"parameters": [],
"methods": [
"GET"
],
"middleware": [
"web",
"guest"
]
}
]
composer require --dev biscofil/laravel-route-summary
php artisan route:summary
license. Please see the license file for more information.