tailoredit/route-viewer

A Laravel Nova tool to view your registered routes.

0.0.8 2023-10-23 08:15 UTC

This package is auto-updated.

Last update: 2024-09-23 10:19:55 UTC


README

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 tailoredit/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"