idecardo / nova-telescope
A Laravel Nova tool.
1.0.0
2018-12-04 20:46 UTC
Requires
- php: >=7.1.0
- laravel/nova: *
- laravel/telescope: ^1.0
This package is auto-updated.
Last update: 2024-11-05 20:08:38 UTC
README
Conveniently link Laravel Telescope to your Laravel Nova projects.
Installation
You may use Composer to install the package into your Laravel Nova project:
composer require idecardo/nova-telescope
Register the tool
with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// app/Providers/NovaServiceProvder.php // ... public function tools() { return [ // ... new \Idecardo\NovaTelescope\NovaTelescope, ]; }
Configuration
If you want to modify the configurations, you must publish the configuration file:
php artisan vendor:publish --provider="Idecardo\NovaTelescope\ToolServiceProvider"
After publishing the configuration file, it will be located at config/nova-telescope.php
.
Each configuration option includes a description of its purpose, so be sure to thoroughly explore this file.
License
The package is open-sourced software licensed under the MIT license.