Skip to content

Integrate Laravel Telescope into Laravel Nova.

Notifications You must be signed in to change notification settings

mikebronner/nova-telescope

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Telescope for Laravel Nova

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,
        ];
    }

    // ...

}