@php($faqCounter = 0)
{{-- Section Title --}}

{!! $content['title'] !!}

@if(!empty($content['subtitle']))

{!! $content['subtitle'] !!}

@endif
{{-- FAQ Container --}}
{{-- Allgemeine Fragen (ungrouped) --}} @if(!empty($content['questions']))
@foreach($content['questions'] as $faq) @php($index = $faqCounter++)

{{ $faq['answer'] }}

@endforeach
@endif {{-- Gruppierte Sektionen --}} @if(!empty($content['sections'])) @foreach($content['sections'] as $section)
{{-- Sektions-Header --}}
@svg('heroicon-o-' . ($section['icon'] ?? 'question-mark-circle'), 'w-5 h-5')

{{ $section['title'] }}

@foreach($section['questions'] as $faq) @php($index = $faqCounter++)

{{ $faq['answer'] }}

@endforeach
@endforeach @endif @if(empty($content['questions']) && empty($content['sections']))

Keine FAQ-Inhalte verfügbar.

@endif