@foreach($tours as $tour)
@if($tour->coverImage && $tour->coverImage->galleryImage) {{ $tour->name }} @else {{ $tour->name }} @endif @if($tour->is_featured)
Öne Çıkan
@endif
{{ number_format($tour->rating_average, 1) }} ({{ $tour->rating_count }})
{{ $tour->departureCity->city ?? 'Türkiye' }} @if($tour->arrivalCity && $tour->arrivalCity->id != $tour->departureCity->id) → {{ $tour->arrivalCity->city }} @endif

{{ $tour->name }}

@if($tour->days)
{{ $tour->days }} Gün
@endif @if($tour->min_participants || $tour->max_participants)
{{ $tour->min_participants }}-{{ $tour->max_participants }} Kişi
@endif @if($tour->has_guide)
Rehberli
@endif
@php $cardPrice = $tour->getLowestPrice(); @endphp @if($cardPrice > 0)
₺{{ number_format($cardPrice, 0, ',', '.') }}
kişi başı, ...'dan başlayan
@else
Fiyat Bilgisi
İletişime Geçin
@endif
@endforeach