library api-pagination
Laravel Api Pagination
lartie/api-pagination
Laravel Api Pagination
- Friday, February 3, 2017
- by lartie
- Repository
- 1 Watchers
- 5 Stars
- 0 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Installation
Composer
composer require "lartie/api-pagination"
Include ApiPaginationTrait trait inside your model., (*1)
class User extends Model
{
use ApiPaginationTrait;
And that's it!, (*2)
Usage
How To Use
User::where('is_blocked', false)->apiPagination($limit, $offset);
Result
[
'items' => [...],
'hasNextPage' => true, //or false
]
License
The MIT License (MIT). Please see License File for more information., (*3)
dev-master
9999999-dev
Laravel Api Pagination
Sources
Download
MIT
The Requires
by
Artemy Beliankin
laravel
api
pagination