cviebrock / eloquent-taggable

Easily add the ability to tag your Eloquent models in Laravel.
MIT License
537 stars 72 forks source link

How to add pagination on all tags? #101

Closed tfevan closed 4 years ago

tfevan commented 5 years ago

How to add pagination on Model::allTags(); I've tried ,

Post::allTags()->paginate(30);

But it's not working...

cviebrock commented 4 years ago

The allTags() method returns an array, not a collection, so it's not paginateable.

What you probably want is something like:

Post::allTagModels()->paginate(30)