2017 © Pedro Peláez
 

library api-pagination

Laravel Api Pagination

image

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

The README.md

Laravel Api Pagination

Installation

Composer

composer require "lartie/api-pagination"

ApiPaginationTrait

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)

The Versions

03/02 2017

dev-master

9999999-dev

Laravel Api Pagination

  Sources   Download

MIT

The Requires

  • php >=7

 

by Artemy Beliankin

laravel api pagination