{!! $element->title !!}

{!! $element->description !!}

@php $colors = [ 'bg-soft-fuchsia', 'bg-soft-aqua', 'bg-soft-yellow', 'bg-soft-leaf', 'bg-soft-orange', 'bg-soft-grape', ]; $icons = ['3d.svg', 'alarm.svg', 'audience.svg', 'badge.svg', 'calendar.svg', 'currency.svg']; @endphp @foreach ($element->features as $index => $feature) @php $color = $colors[$index % count($colors)]; $icon = $icons[$index % count($icons)]; @endphp

{!! $feature->title !!}

{!! $feature->description !!}

@endforeach