Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages

Readme

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

Back to Top
Added 3 years ago
Last updated 3 Years Ago
Version 1.0.0-beta
Composer
ideatocode/nova-kanban-board
GitHub stars 4
Packagist downloads 214

Favorites

0 users favorited

Rating

N/A
(out of 5)
★★★★★
★★★★
★★★
★★
0 ratings

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas