Reputation: 11
By default per page pagination in Laravel = 15 item.
I want use custom variable $perPage
, but want set limit, for example 500 item.
How it realize for all quires and not for only one method?
Upvotes: 1
Views: 320
Reputation: 163748
If you want to limit results, use take()
with paginate()
. For example:
Model::take(500)->paginate(30)
Upvotes: 1