Created
August 16, 2013 17:53
-
-
Save JeffreyWay/6252012 to your computer and use it in GitHub Desktop.
Sometimes, when filtering through a collection and displaying them on the page, you need to wrap every X items within a wrapper. Common examples are when using Bootstrap... Is this the recommended way to do that? Fairly clean as it is, I guess...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
Hmm.. I can't think of anything much cleaner. Like Zack said maybe a partial thing. I dunno.
Whenever I try this, array_chunk complains about getting an object instead of an array. I'm passing an Eloquent model. Any tips?
Try:
@foreach(array_chunk($posts->all(), 3) as $postSet)
instead of:
@foreach(array_chunk($posts, 3) as $postSet)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was actually looking for this exact solution yesterday. This is much cleaner than what I came up with. Thanks.