Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 793 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 793 Bytes

Laravel Nova Route Viewer

This Nova tool adds a route viewer section to the Nova sidebar.

It's like php artisan route:list for your browser. Supports sorting and filtering.

screenshot of Laravel Nova Route Viewer tool

Installation

Install via Composer:

composer require sbine/route-viewer

Register the tool in app/Providers/NovaServiceProvider:

public function tools()
{
    return [
        new \Sbine\RouteViewer\RouteViewer,
    ];
}

You can customize the translations by publishing them to your local folder resources/lang/vendor/route-viewer:

php artisan vendor:publish --provider="Sbine\RouteViewer\ToolServiceProvider"