odoo-jsonrpc icon indicating copy to clipboard operation
odoo-jsonrpc copied to clipboard

Feature Request: Pagination

Open xewl opened this issue 3 years ago • 0 comments

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

xewl avatar Dec 09 '21 10:12 xewl