// Based on https://gist.github.com/vluzrmos/3ce756322702331fdf2bf414fea27bcb
- Create a new Service-Provider
app/Providers/CollectionServiceProvider.php
- Insert code above
- Register Service-Provider in
config/app.php
You can use that macro like you using pagination-method of model-collection.
$myCollection = $itemCollection->paginate(10);
@foreach($myCollection as $items)
...
@endforeach
{{ $myCollection->links() }}