Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 641 Bytes

File metadata and controls

26 lines (19 loc) · 641 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 eagle-developers/nova-route-viewer

Register the tool in app/Providers/NovaServiceProvider.php:

public function tools()
{
    return [
        // ..,
        new \EagleDevelopers\NovaRouteViewer\RouteViewer,
    ];
}