ideatocode / nova-kanban-board
A Laravel Nova tool.
Installs: 214
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
pkg:composer/ideatocode/nova-kanban-board
Requires
- php: ^7.3|^8.0
- whitecube/nova-flexible-content: ^1.0
This package is auto-updated.
Last update: 2025-10-10 09:58:34 UTC
README
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); }