> 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

Based on the API key configured in your *.env* file it lookups your application and open your Inspector dashboard in another tab.

![](/files/n8KDWwv1BHFc5qMfA9hL)

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