biscofil / laravel_route_summary

Create a summary of all the laravel routes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Create a summary of all the laravel routes

License:MIT License


Languages

Language:PHP 60.9%Language:Blade 39.1%