@php $headline = $content['headline'] ?? ''; // Prefer the dedicated `faqs` key (new distinct state path); fall // back to the legacy shared `items` key for sections saved before // the repeater-collision fix / not yet data-migrated. $items = $content['faqs'] ?? $content['items'] ?? []; @endphp
@if($headline)

{{ $headline }}

@endif
@foreach($items as $item)
{{ $item['question'] ?? '' }}
{{ $item['answer'] ?? '' }}
@endforeach