Skip to content

Instantly share code, notes, and snippets.

@rowej83
Forked from JeffreyWay/example.html
Created June 27, 2014 12:22
Show Gist options
  • Save rowej83/bbf8172177ba23c71de2 to your computer and use it in GitHub Desktop.
Save rowej83/bbf8172177ba23c71de2 to your computer and use it in GitHub Desktop.
array_chunk() usage
@foreach(array_chunk($posts, 3) as $postSet)
<div class="row"> <!-- this div will surround every three posts -->
@foreach($postSet as $post)
<h3>{{ $post['title'] }}</h3>
@endforeach
</div>
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment