You need to use a Length aware paginator:
https://laracasts.com/discuss/channels/guides/length-aware-paginator
Hi,
I was wondering if someone can explain how to create a manual simple paginator?
I've got my data, which uses a groupBy statement so I believe I need to create a manual paginator.
I've just got no idea how to do this and from looking around online, there's no simple concrete examples I can find
I think I'm supposed to pass the data to the Illuminate\Pagination\Paginator construct method but where do I go from there in terms of returning my view and displaying the pagination links in that view...
$book->groupBy('isbn')->latest() //my data
Any help would be greatly appreciated
Please or to participate in this conversation.