idecardo/nova-telescope

A Laravel Nova tool.

1.0.0 2018-12-04 20:46 UTC

This package is auto-updated.

Last update: 2024-04-05 18:50:12 UTC


README

Conveniently link Laravel Telescope to your Laravel Nova projects.

Preview

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.