Skip to content

Instantly share code, notes, and snippets.

@assertchris
Created March 26, 2014 18:04
Show Gist options
  • Select an option

  • Save assertchris/9789506 to your computer and use it in GitHub Desktop.

Select an option

Save assertchris/9789506 to your computer and use it in GitHub Desktop.
<?php
@foreach (array_chunk($images->toArray(), 4) as $chunk)
<tr>
@foreach($chunk as $image)
<td><img src="{{ $image["url"] }}"></td>
@endforeach
</tr>
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment