Laravel Nova Tool
Direct link to the Inspector dashboard in your Laravel Nova administration panel.
Based on the API key configured in your .env file it lookups your application and open your Inspector dashboard in another tab.

Install the latest version using composer:
composer require inspector-apm/inspector-nova-link
Register the tool in your
app/Providers/NovaServiceProvider
:public function tools()
{
return [
...,
new \Inspector\Nova\InspectorNovaLink,
];
}
Visit the official Nova package page: https://novapackages.com/packages/inspector-apm/inspector-nova-link
Last modified 2yr ago