LaravelPackages.net
Acme Inc.
Toggle sidebar
genealabs/nova-horizon

A Laravel Nova tool.

60.057
10
0.6.1
About genealabs/nova-horizon

genealabs/nova-horizon is a Laravel package for a laravel nova tool.. It currently has 10 GitHub stars and 60.057 downloads on Packagist (latest version 0.6.1). Install it with composer require genealabs/nova-horizon. Discover more Laravel packages by genealabs or browse all Laravel packages to compare alternatives.

Last updated

Horizon Integration for Nova

Supporting This Package

This is an MIT-licensed open source project with its ongoing development made possible by the support of the community. If you'd like to support this, and our other packages, please consider sponsoring us via the button above.

We thank the following sponsors for their generosity, please take a moment to check them out:

Installation

  1. Install the package:

    composer require genealabs/nova-horizon
    
  2. Add the tool to your Nova service provider app\Providers\NovaServiceProvider.php:

    <?php
    
    namespace App\Providers;
    
    use GeneaLabs\NovaHorizon\NovaHorizon;
    use Laravel\Nova\NovaApplicationServiceProvider;
    
    class NovaServiceProvider extends NovaApplicationServiceProvider
    {
        //...
    
        public function tools()
        {
            return [
                //...
                new NovaHorizon,
            ];
        }
    
        //...
    }
    
    
  3. When using customized Nova main sidebar menu (https://nova.laravel.com/docs/4.0/customization/menus.html#customizing-the-main-menu), add menu section to your Nova service provider app\Providers\NovaServiceProvider.php:

     MenuSection::make('Horizon')
         ->path('/nova-horizon')
         ->icon('server')
    

Star History Chart