Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from JeffreyWay/example.html
Created August 26, 2014 07:45
Show Gist options
  • Save RimonEkjon/8bfa2587b982833c40c3 to your computer and use it in GitHub Desktop.
Save RimonEkjon/8bfa2587b982833c40c3 to your computer and use it in GitHub Desktop.
@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