odoo-jsonrpc
odoo-jsonrpc copied to clipboard
Feature Request: Pagination
Next to get
, in laravel, we're also kind of using the Paginator.
We can currently already use limit
and offset
, of course.
So hereby a request for the addition of a paginator implementation for Laravel, if possible:
paginate( $perPage = 15, $columns = ['*'], $pageName = 'model.name` )
simplePaginate( $perPage = 15, $columns = ['*'], $pageName = 'model.name` )
This would make it easier to integrate a front-end or Api Resource.
Docs at Laravel: https://laravel.com/docs/8.x/pagination Framework Reference Paginator: https://laravel.com/api/8.x/Illuminate/Pagination/Paginator.html