Created
May 22, 2016 14:53
-
-
Save fearrr/3703653b79f9572446ef5d387a896e46 to your computer and use it in GitHub Desktop.
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
| //Разбиение на чанки для Twitter Bootstrap | |
| @foreach($collection->chunk(3) as $items) | |
| <div class="row course-set courses__row"> | |
| @foreach($items as $item) | |
| <article class="col-md-4 course-block course-block-lessons"> | |
| {{ Blade Content }} | |
| </article> | |
| @endforeach | |
| </div> | |
| @endforeach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment