| Install | |
|---|---|
composer require denmasyarikin/laravel-api-pagination |
|
| Latest Version: | 0.1.8 |
| PHP: | >=7.0 |
Inspired By Illuminate Pagination, This Package Used For Api Pagination (by limit/offset)
composer require "elemenx/laravel-api-pagination"
On bootstrap/app.php add:
$app->register(ElemenX\ApiPagination\PaginationServiceProvider::class);
use ElemenX\ApiPagination\Paginatable;
class User {
use Paginatable;
}
This is an example for how to use this package.
$users = User::apiPaginate(100); // 100 is your defalut limit number
when you visit with
http://api.dev/user?limit=100&offset=0
It will return Structure As follows.
[
'data' => [
[
'id' => 1,
'name' => 'test'
]
],
'meta' => [
'limit' => 100,
'offset' => 0,
'total' => 1
]
]