dragonfly/lists
最新稳定版本:1.2.5
Composer 安装命令:
composer require dragonfly/lists
包简介
Laravel DataTables generator/request handler.
README 文档
README
DragonFly\Lists is a Laravel 5 package that makes it easy to set up dataTables for you front-end
code, as wel as handle the requests that it requires to retrieve data.
I've taken a similar approach to this problem as Laravel's own form Request's.
Installation
First run composer require:
composer require dragonfly/lists
Next open up app/config/app.php and add the serviceProvider:
'DragonFly\Lists\ServiceProvider',
Once that's done open up app/Http/Kernel.php, we'll need to add a trait to the class and a new property:
use \DragonFly\Lists\Http\KernelTrait; /** * DataTable definitions (the key is used as a slug for routing) * * @var array */ protected $tables = [];
Lastly you'll create a new folder called Tables in app/Http and you're all set to go.
However if you'd like to make use of the config file & assets that comes bundled, you could run the following command in your terminal:
php artisan php artisan vendor:publish --provider="DragonFly\Lists\ServiceProvider" --tag="merge"
If you'd like to tweak the views or lang file you cn publish those using:
php artisan vendor:publish --provider="DragonFly\Lists\ServiceProvider" --tag="solid"
Features
- Laravel 5 support
- Supports both
EloquentandQueryBuilderas data source - Flexible rendering
- Easily generate skeleton definition
- Offers optional table bulk-actions
- Full localisation support
- Fully documented
Documentation
I've written down the documentation over at readme.io
统计信息
- 总下载量: 414
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-28