Laravel Fast Paginate is a fast implementation of offset/limit pagination for Laravel by Aaron Francis:
Using Fast Paginate, you can use the same pagination API available in Laravel via the fastPaginate()
method:
// Traditional built-in paginationModel::query()->paginate() // Fast paginate has the same method signatureModel::query()->fastPaginate() // Relationships are supportedUser::first()->posts()->fastPaginate();
If you'd like to learn more about the techniques used in this package, check out Efficient Pagination Using Deferred Joins by Aaron Francis.
You can learn more about this package, get full installation instructions, and view the source code on GitHub.
0 comments:
Post a Comment
Thanks