Level 16
https://laracasts.com/discuss/channels/general-discussion/laravel-5-paginator-chunk-error
I have the same issue, not too sure myself to be honest.
For Larabook we were using
@foreach($users->chunk(4) as $userSet)
<div class="row users">
@foreach($userSet as $user)
<div class="col-md-3 user-block">
@include('users.partials.avatar', ['size' => 70])
<h4 class="user-block-username">
{{{ link_to_route('users.profile', $user->username, [$user->username]) }}}
</h4>
</div>
@endforeach
</div>
@endforeach
But with recent changes Paginator::chunk is undefined.
Anyone using pagination in L5 know the solution to this?
Please or to participate in this conversation.