ideatocode/nova-kanban-board
最新稳定版本:1.0.0-beta
Composer 安装命令:
composer require ideatocode/nova-kanban-board
包简介
A Laravel Nova tool.
README 文档
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); }
统计信息
- 总下载量: 214
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-12-09
