I have two different querys that I merge to return a collection
$combinados = $histMe->merge($hist)->sortByDesc('created_at');
And I return them this way:
$final = $combinados->all();
But this prints all the collection, how can I paginate this? The paginate() laravel method doesn't work with collections. And how can I controll it from the view?
Thanks!
You can use this code that I wrote a long time ago:
You must use Length aware paginator: