@foreach($tours as $tour)
@if($tour->coverImage && $tour->coverImage->galleryImage) {{ $tour->name }} @else {{ $tour->name }} @endif @if($tour->defaultPricing && $tour->defaultPricing->early_booking_discount > 0)
%{{ $tour->defaultPricing->early_booking_discount }} İndirim
@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
@if($tour->defaultPricing)
₺{{ number_format($tour->defaultPricing->adult_price, 0, ',', '.') }}
@if($tour->defaultPricing->early_booking_discount > 0)
₺{{ number_format($tour->defaultPricing->adult_price / (1 - $tour->defaultPricing->early_booking_discount/100), 0, ',', '.') }}
@endif @else
Fiyat Bilgisi
İletişime Geçin
@endif
@endforeach