@php $tours = $section['resolved']['tours'] ?? collect(); $data = $section['data'] ?? []; @endphp @if($tours->isNotEmpty())
@if(!empty($data['subtitle'])){{ $data['subtitle'] }}@endif

{{ $data['title'] ?? 'Öne Çıkan Turlar' }}

@foreach($tours as $tour) @include('site.templates.voyage.partials.tour-card', [ 'tour' => $tour, 'type' => $tour->site_type ?? null, 'variant' => 'vertical', ]) @endforeach
@endif