Package Data | |
---|---|
Maintainer Username: | sbine |
Package Create Date: | 2018-08-24 |
Package Last Update: | 2024-10-05 |
Home Page: | |
Language: | Vue |
License: | MIT |
Last Refreshed: | 2025-01-29 15:00:16 |
Package Statistics | |
---|---|
Total Downloads: | 205,071 |
Monthly Downloads: | 833 |
Daily Downloads: | 37 |
Total Stars: | 59 |
Total Watchers: | 4 |
Total Forks: | 10 |
Total Open Issues: | 1 |
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.
Install via Composer:
composer require sbine/route-viewer
Register the tool in app/Providers/NovaServiceProvider
:
public function tools()
{
return [
new \Sbine\RouteViewer\RouteViewer,
];
}