Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. @foreach ($collection->chunk(6) as $collection_chunk)
  2. <div class="row">
  3. @foreach ($collection_chunk as $item)
  4. <div class="col-md-2 col-sm-3">
  5. {{ $item->name }}
  6. </div>
  7. @endforeach
  8. </div>
  9. @endforeach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement