Pagination
There are two additional methods provided to support pagination.
Paginate
A shortcut to the offset and limit clauses:
$query->table('movies')->paginate($skip=110, $take=10);
// SELECT * FROM `movies` LIMIT 10 OFFSET 110
There are two additional methods provided to support pagination.
A shortcut to the offset and limit clauses:
$query->table('movies')->paginate($skip=110, $take=10);
// SELECT * FROM `movies` LIMIT 10 OFFSET 110