robsonvn / laravel-couchdb

A CouchDB based Eloquent model and Query builder for Laravel
56 stars 28 forks source link

Paginate #19

Closed diegonella closed 6 years ago

diegonella commented 6 years ago

How should I use paginate?

robsonvn commented 6 years ago

I haven't implemented the CouchDB 2.1.1 pagination functionality yet, but you can do it programmatically using Offset and Limit

$users = User::skip(10)->take(5)->get();