swooder / simple-pagination
laravel-admin 的简单分页扩展
1.0.0
2023-05-30 07:01 UTC
Requires
- php: >=7.0.0
- encore/laravel-admin: ~1.6
This package is auto-updated.
Last update: 2024-08-30 01:29:06 UTC
README
这是一个扩展,可以将 Laravel simple-pagination 集成到 laravel-admin 中。
安装
composer require swooder/simple-pagination
配置
打开 config/app.php
,为 providers 部分添加配置
'providers' => [ ... Swooder\SimplePagination\SimplePaginationServiceProvider::class ]
使用
在网格中使用它
// origin use case in grid $grid = new Grid(new User()); //now replace Grid to SimpleGird $grid = new SimpleGrid(new User()); //if you need the defalut paginator $grid->simplePaginate(false);
许可证
在 MIT 许可证 (MIT) 下授权。