@if($section->title || $section->subtitle)
@if($section->subtitle)
{{ $section->subtitle }}
@endif
@if($section->title)
{{ $section->title }}
@endif
@endif
@php
$features = $section->getConfig('features', [
['icon' => 'fa-shield-alt', 'title' => 'Güvenli Ödeme', 'description' => 'SSL sertifikalı güvenli ödeme altyapısı ile işlemleriniz koruma altında'],
['icon' => 'fa-headset', 'title' => '7/24 Destek', 'description' => 'Her an yanınızdayız, sorularınız için profesyonel destek ekibimiz hizmetinizde'],
['icon' => 'fa-certificate', 'title' => 'Lisanslı Acentemiz', 'description' => 'TÜRSAB belgeli, güvenilir ve profesyonel turizm hizmeti'],
['icon' => 'fa-undo', 'title' => 'Esnek İptal', 'description' => 'Planlarınız değişirse kolay iptal ve iade politikamızdan yararlanın']
]);
@endphp
@foreach($features as $feature)
{{ $feature['title'] }}
{{ $feature['description'] }}
@endforeach