@props([ /** The quote body. HTML allowed for italic emphasis spans. */ 'quote' => null, 'authorName' => 'Priya Ramaswamy', 'authorRole' => 'Head of CX, Bloomly Flowers · Mumbai', 'authorInitials' => 'PR', /** Two optional stat callouts on the right (each: [label, value]). */ 'stats' => null, ]) @php $quote = $quote ?? __( 'We replaced AiSensy, Klaviyo, Freshdesk, and a Zapier mess. Read rates jumped from 19% on email to 86% on WhatsApp — and agents reply 3× faster. CFO is happy.', ); $stats = $stats ?? [ ['label' => __('tools replaced'), 'value' => '4 → 1'], ['label' => __('repeat orders'), 'value' => '+38%'], ]; @endphp

{!! fc('pull-quote.quote', $quote) !!}

{{ fc('pull-quote.author_initials', $authorInitials) }}
{{ fc('pull-quote.author', $authorName) }}
{{ fc('pull-quote.author_role', $authorRole) }}
@foreach ($stats as $i => $stat)
{{ fc('pull-quote.stat' . ($i + 1) . '_label', $stat['label']) }}
{{ fc('pull-quote.stat' . ($i + 1) . '_value', $stat['value']) }}
@endforeach