https://github.com/sbine/nova-route-viewer
Route viewer tool for Laravel Nova
https://github.com/sbine/nova-route-viewer
hacktoberfest laravel laravel-nova nova routes
Last synced: 6 days ago
JSON representation
Route viewer tool for Laravel Nova
- Host: GitHub
- URL: https://github.com/sbine/nova-route-viewer
- Owner: sbine
- License: mit
- Created: 2018-08-24T04:36:45.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-05T15:05:08.000Z (9 months ago)
- Last Synced: 2024-11-06T09:18:57.471Z (8 months ago)
- Topics: hacktoberfest, laravel, laravel-nova, nova, routes
- Language: Vue
- Homepage:
- Size: 145 KB
- Stars: 59
- Watchers: 4
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Nova Route Viewer
This [Nova](https://nova.laravel.com/) tool adds a route viewer section to the Nova sidebar.
It's like `php artisan route:list` for your browser. Supports sorting and filtering.

## Installation
Install via [Composer](https://getcomposer.org/):
```
composer require sbine/route-viewer
```Register the tool in `app/Providers/NovaServiceProvider`:
```php
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"
```