jinoantony/laravel-kanban
Composer 安装命令:
composer require jinoantony/laravel-kanban
包简介
Kanban boards for laravel
README 文档
README
A laravel wrapper for the jkanban library.
Installation
You can install this package using composer.
composer require jinoantony/laravel-kanban
This package supports package auto-discovery, so you don't have to register it manually. If you want to manually register the provider, add the following line to config/app.php file.
JinoAntony\Kanban\LaravelKanbanServiceProvider::class,
Usage
This package uses jkanban library under the hood. So don't forget to include jkanban.min.js and jkanban.min.css in your view files.
Create kanban boards
You can use the artisan command to generate kanban boards.
php artisan kanban:make TaskKanban
This will create a new file TaskKanban in the app/Kanban directory.
By default the structure for the kanban board is like this.
class TaskKanban extends Kanban { /** * Get the list of boards * * @return KBoard[] */ public function getBoards() { return [ KBoard::make('board1') ->setTitle('Board1 title') ->canDragTo('board2'), KBoard::make('board2') ->setTitle('Board2 title') ->canDragTo('board3'), KBoard::make('board3') ->setTitle('Board3 title') ->canDragTo('board2') ->canDragTo('board1'), ]; } /** * Get the data for each board * * @return array */ public function data() { return [ 'board1' => [ KItem::make('1') ->setContent('Item1'), KItem::make('2') ->setContent('Item2'), ], 'board2' => [ KItem::make('3') ->setContent('Item3'), KItem::make('4') ->setContent('Item4'), ], 'board3' => [ KItem::make('5') ->setContent('Item5'), KItem::make('6') ->setContent('Item6'), ], ]; } public function build() { return $this->element('.kanban-board') ->margin('20px') ->width('365px'); } }
Create a view to render the board.
<!DOCTYPE html> <html lang="en"> <head> <title>Kanban</title> <link rel="stylesheet" href="{{ asset('css/jkanban.min.css') }}" /> </head> <body> <div class="kanban-board"></div> <script src="{{ asset('js/jkanban.min.js') }}"></script> {!! $kanban->scripts() !!} </body> </html>
Then in your controller,
use App\Kanban\TaskKanban; class TaskController extends Controller { public function get(TaskKanban $kanban) { return $kanban->render('kanban'); } }
Now add a route in web.php.
Route::get('task', 'TaskController@get');
jinoantony/laravel-kanban 适用场景与选型建议
jinoantony/laravel-kanban 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.65k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2020 年 05 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 jinoantony/laravel-kanban 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jinoantony/laravel-kanban 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 23
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-05-06