{{-- :::faq - q: "What's the minimum capital to start?" a: "You can start with as little as $50 using the $5 AI plan tier." - q: "How long is one trading cycle?" a: "30 days. Capital and profits return to your wallet on completion." ::: Also emits FAQPage JSON-LD via a hidden script tag for structured data. --}} @php $items = $items ?? []; @endphp @if(!empty($items))
@foreach($items as $i => $qa)
{{ $qa['q'] ?? '' }}
{!! nl2br(e($qa['a'] ?? '')) !!}
@endforeach
@php $faqSchema = [ '@context' => 'https://schema.org', '@type' => 'FAQPage', 'mainEntity' => array_map(function ($qa) { return [ '@type' => 'Question', 'name' => $qa['q'] ?? '', 'acceptedAnswer' => [ '@type' => 'Answer', 'text' => $qa['a'] ?? '', ], ]; }, $items), ]; @endphp @endif