Skip to content

Commit 39067bc

Browse files
authored
Merge pull request #254 from ninjaparade/patch-1
Paginate return
2 parents 763d77a + b4c6fe6 commit 39067bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/TagsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function index()
2121
})
2222
->orderBy('created_at', 'DESC')
2323
->withCount('posts')
24-
->get();
24+
->paginate(30);
2525

2626
return TagsResource::collection($entries);
2727
}

0 commit comments

Comments
 (0)