Closed tfevan closed 5 years ago
How to add pagination on Model::allTags(); I've tried ,
Post::allTags()->paginate(30);
But it's not working...
The allTags() method returns an array, not a collection, so it's not paginateable.
allTags()
What you probably want is something like:
Post::allTagModels()->paginate(30)
How to add pagination on Model::allTags(); I've tried ,
But it's not working...