@php $heading = 'Find out more'; $items = []; for($i = 0; $i < 2; $i++) { $item = new StdClass; $item->image = 'http://placehold.it/200x200/abcdef'; $item->text = 'Delivery Options ' . $i; $item->link = 'javascript:void(0)'; $items[] = $item; } $total = count($items); $col_count = 12 / $total; $total >= 4 ? $container = 'container-wide' : $container = 'wat'; if($total >= 4) { $class_list = 'col-md-3'; } elseif($total = 3) { $class_list = 'col-md-4'; } else { $class_list = 'col-md-5 offset-md-1'; } @endphp
@if($heading)

{{ $heading }}

@endif
@foreach($items as $item) @endforeach