Skip to content

Instantly share code, notes, and snippets.

@shreesubhendu
Created December 20, 2021 13:30
Show Gist options
  • Save shreesubhendu/c314e684b983f557d93185b2f0aa61ec to your computer and use it in GitHub Desktop.
Save shreesubhendu/c314e684b983f557d93185b2f0aa61ec to your computer and use it in GitHub Desktop.
Laravel 3column from eloquent
@foreach ($data->chunk(3) as $row)
<div class="row">
@foreach ($row as $s)
<div class="col-md-4 col-xs-12">
...
</div>
@endforeach
</div>
@endforeach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment