# Laravel Nova Tool

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 %}
