Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-19T01:09:59.000Z (4 months ago)
- Last Synced: 2024-07-19T09:35:52.177Z (4 months ago)
- Topics: hacktoberfest, laravel, laravel-nova, nova, routes
- Language: Vue
- Homepage:
- Size: 142 KB
- Stars: 59
- Watchers: 4
- Forks: 9
- 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.
![screenshot of Laravel Nova Route Viewer tool](https://sarabine.com/i//Laravel-Nova-Route-Viewer-Tool.png)
## 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"
```