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
Install the latest version using composer:
composer require inspector-apm/inspector-nova-link
Register the tool
Register the tool in your app/Providers/NovaServiceProvider
:
public function tools()
{
return [
...,
new \Inspector\Nova\InspectorNovaLink,
];
}
Last updated