{{-- Blade-шаблон блока «CTA-полоса». $data: title — заголовок subtext — подзаголовок btn1_text, btn1_url — основная кнопка btn2_text, btn2_url — вторичная кнопка (опционально) --}}
@if ($data['title'] ?? '')
{{ $data['title'] }}
@endif @if ($data['subtext'] ?? '')
{{ $data['subtext'] }}
@endif
@if (($data['btn1_text'] ?? '') || ($data['btn2_text'] ?? ''))
@if (($data['btn1_text'] ?? '') && ($data['btn1_url'] ?? '')) {{ $data['btn1_text'] }} @endif @if (($data['btn2_text'] ?? '') && ($data['btn2_url'] ?? '')) {{ $data['btn2_text'] }} @endif
@endif