hmmm-hmmm-hmmm / nova-telescope-menu
The Nova Telescope Menu package provides an easy way to integrate Telescope into your Laravel Nova dashboard, allowing you to access Laravel Telescope directly from your Nova application.
Installs: 2 534
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 2
Open Issues: 0
Requires
- php: ^7.3|^8.0
README
Introduction
The Nova Telescope Menu package provides an easy way to integrate Telescope into your Laravel Nova dashboard, allowing you to access Laravel Telescope directly from your Nova application.
Installation
To install this package, you can use Composer:
composer require hmmm-hmmm-hmmm/nova-telescope-menu
Usage
After installing the package, you'll need to register the tool in your app/Providers/NovaServiceProvider.php:
use HmmmHmmmHmmm\NovaTelescopeMenu\NovaTelescopeMenu; // ... public function tools() { return [ // ... Other Nova tools ... new NovaTelescopeMenu, ]; }
This registration will add a new menu item in your Nova dashboard that links to Laravel Telescope, making it easily accessible for debugging and monitoring your application.
Configuration
The Nova Telescope Menu package doesn't require additional configuration out of the box. However, if you need to customize its behavior, you can change several options.
use HmmmHmmmHmmm\NovaTelescopeMenu\NovaTelescopeMenu; // ... public function tools() { return [ // ... Other Nova tools ... (new NovaTelescopeMenu())->setName('MyCustomName')->setIcon('briefcase'), ]; }