debasish nandi
debasish nandi

Reputation: 11

Group By and pagination not working togather laravel

$campaigns = Campaign::orderBy('id','DESC')->paginate(2)->groupBy('offer_id');

results returning 2 rows but no pagination links.

Upvotes: 0

Views: 182

Answers (1)

Darshan Baraiya
Darshan Baraiya

Reputation: 102

You should use groupBy first then paginate in Laravel as its chaining of method calling your last method will be given result as two records without pagination

Campaign::orderBy('id','DESC')->groupBy('offer_id')->paginate(2);

Upvotes: 1

Related Questions