Created
December 20, 2021 13:30
-
-
Save shreesubhendu/c314e684b983f557d93185b2f0aa61ec to your computer and use it in GitHub Desktop.
Laravel 3column from eloquent
This file contains hidden or 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 ($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