Skip to content

biscofil/laravel_route_summary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Route Summary

Latest Version on Packagist

Total Downloads

MIT Licensed

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.

Image description

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"
        ]
    }
]

Installation

composer require --dev biscofil/laravel-route-summary

Usage

php artisan route:summary

Credits

License

license. Please see the license file for more information.