Monday, April 10, 2017

Place a div every nth item with Laravel Infinite scroll

I have a simple loop, and I want to place a div every nth item. It works on the first page, but the other pages completely ignore the blade condition. What am I doing wrong ?

@foreach ($items as $item => $pic)
@if($item % 10 == 0)
<div>...
@endif
@endforeach
<div style="display: block">
      
</div>

Thank you



via SaKer

Advertisement