LaravelPackages.net
Acme Inc.
Toggle sidebar
ideatocode/nova-kanban-board

A Laravel Nova tool.

214
4
1.0.0-beta
About ideatocode/nova-kanban-board

ideatocode/nova-kanban-board is a Laravel package for a laravel nova tool.. It currently has 4 GitHub stars and 214 downloads on Packagist (latest version 1.0.0-beta). Install it with composer require ideatocode/nova-kanban-board. Discover more Laravel packages by ideatocode or browse all Laravel packages to compare alternatives.

Last updated

Nova Kanban Board

composer require ideatocode/nova-kanban-board

use Ideatocode\NovaKanban\NovaKanban;
// ...

  /**
   * Get the tools that should be listed in the Nova sidebar.
   *
   * @return array
   */
  public function tools()
  {
    return [
      new NovaKanban,
    ];
  }

You can also make changes to the migrations models used

php artisan vendor:publish --provider="Ideatocode\NovaKanban\NovaKanbanServiceProvider"
// ...

  /**
   * Bootstrap any application services.
   *
   * @return void
   */
  public function boot()
  {
    parent::boot();
    $this->app->bind(KanbanItem::class, MyKanbanItem::class);
    $this->app->bind(KanbanBoard::class, MyKanbanBoard::class);
    $this->app->bind(NovaKanbanBoard::class, MyNovaKanbanBoard::class);
  }

image

Comments