Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

Route viewer tool for Laravel Nova

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"
```