indiehd / web-api

GNU Affero General Public License v3.0
6 stars 4 forks source link

Add pagination to all() method #106

Closed poppabear8883 closed 5 years ago

poppabear8883 commented 5 years ago

Pagination can work in a couple different ways.

Crude Examples:

$this->artist->all(10);

// or

$this->artist->model()->where('id', '>', 50)->paginate(10);

Closes #86