{{ $section->title }}

@if(!empty($section->subtitle))
{{ $section->subtitle }}
@endif @if(!empty($section->description))
{!! $section->description !!}
@endif
@foreach(array_chunk($section->items, 2) as $chunk)
@foreach($chunk as $item)
@if($item->isVideo && reset($item->isVideo)->codename == 'yes') @else @endif {{ optional(reset($item->imageThumbnail))->description }}
@if(!empty($item->title))
{{ $item->title }}
@endif
@if(!empty(strip_tags($item->description)))
{!! $item->description !!}
@endif
@endforeach
@endforeach