Skip to content

Commit 763d77a

Browse files
authored
Merge pull request #253 from ahmedash95/patch-1
Fix Team missing pagination
2 parents 7bcdfe2 + 4577dab commit 763d77a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/TeamController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function index()
2222
})
2323
->orderBy('created_at', 'DESC')
2424
->withCount('posts')
25-
->get();
25+
->paginate(30);
2626

2727
return TeamResource::collection($entries);
2828
}

0 commit comments

Comments
 (0)