sbine/route-viewer

A Laravel Nova tool to view your registered routes.

Installs: 205 172

Dependents: 0

Suggesters: 0

Security: 0

Stars: 59

Watchers: 4

Forks: 10

Open Issues: 1

Language:Vue

0.0.7 2020-05-23 17:40 UTC

This package is auto-updated.

Last update: 2025-01-05 15:54:07 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 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"