bipipoh
bipipoh

Reputation: 11

Change perPage limit

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

Answers (2)

parastoo
parastoo

Reputation: 2469

Model::latest()->paginate(number of results each page);

Upvotes: 0

Alexey Mezenin
Alexey Mezenin

Reputation: 163748

If you want to limit results, use take() with paginate(). For example:

Model::take(500)->paginate(30)

Upvotes: 1

Related Questions