Created
August 31, 2023 20:17
-
-
Save webgurus/48a98940119cfa7892ebfafc74907711 to your computer and use it in GitHub Desktop.
Split list elements into chunks of 5 with Blade (e.g UL list columns)
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
@if($content['section_checkmarks']) | |
@php | |
// Transform array into collection | |
$checkmarks = collect($content['section_checkmarks']); | |
@endphp | |
{{-- Split elements into chunks of 5 --}} | |
@foreach($checkmarks->chunk(5) as $chunk) | |
<ul class="check list-smaller"> | |
@foreach($chunk as $checkmark) | |
<li>{!! $checkmark['checkmark_text'] !!}</li> | |
@endforeach | |
</ul> | |
@endforeach | |
<!-- /.check --> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment