{{-- Heading --}}

{{ $section_data["title"] ?? '' }}

@if (!empty($section_data["subtitle"]))

{{ $section_data["subtitle"] }}

@endif
{{-- Items --}}
@foreach ($section_data["items"] ?? [] as $index => $item)
{!! $item['icon'] ?? '' !!}

{{ $item['title'] ?? '' }}

{{ $item['description'] ?? '' }}

@endforeach