Skip to content

Instantly share code, notes, and snippets.

@webgurus
Created August 31, 2023 20:17
Show Gist options
  • Save webgurus/48a98940119cfa7892ebfafc74907711 to your computer and use it in GitHub Desktop.
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)
@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