> For the complete documentation index, see [llms.txt](https://docs.inspector.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.inspector.dev/guides/laravel/laravel-nova-tool.md).

# 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.

![](https://2873457055-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LQ51SrLj6qvIRejC1XD%2Fuploads%2Fo98CDNHdlktzAVM30ALy%2Fnova-inspector-link.png?alt=media\&token=9ea58a64-755a-42d7-b5aa-05e98c8b7842)

### Install

Install the latest version using composer:

```
composer require inspector-apm/inspector-nova-link
```

### Register the tool

&#x20;Register the tool in your `app/Providers/NovaServiceProvider`:

```php
public function tools()
{
    return [
        ...,
        
        new \Inspector\Nova\InspectorNovaLink,
    ];
}
```

{% hint style="info" %}
Visit the official Nova package page: <https://novapackages.com/packages/inspector-apm/inspector-nova-link>
{% endhint %}
