genealabs/nova-telescope

A Laravel Nova tool.

Fund package maintenance!
mikebronner

11.0 2024-11-11 21:00 UTC

This package is auto-updated.

Last update: 2024-11-11 21:00:38 UTC


README

Tenancy for Laravel Nova masthead image.

Installation

Composer Dependency

composer require genealabs/nova-telescope

Nova Service Provider

Add GeneaLabs\NovaTelescope\NovaTelescope to the tools section in App\Providers\NovaServiceProvider. It should look something like this:

<?php

namespace App\Providers;

use GeneaLabs\NovaTelescope\NovaTelescope;
use Laravel\Nova\NovaApplicationServiceProvider;
// ...

class NovaServiceProvider extends NovaApplicationServiceProvider
{

    // ...

    public function tools()
    {
        return [
            // ...
            new NovaTelescope,
        ];
    }

    // ...

}