Looking to hire Laravel developers? Try LaraJobs

laravel-route-summary maintained by biscofil

Description
Create Laravel route summary
Last update
2021/03/02 08:46 (dev-master)
License
Downloads
607

Comments
comments powered by Disqus

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.