@extends('agency.layouts.app') @section('title', 'Kültür Turları') @section('page_title', 'Kültür Turları') @php $breadcrumbs = [ ['title' => 'Ana Sayfa', 'url' => route('agency.dashboard')], ['title' => 'Ürünler', 'url' => '#'], ['title' => 'Kültür Turları', 'url' => ''] ]; @endphp @push('styles') @endpush @section('content')
{{ $tours->total() }}
Toplam Tur
{{ $tours->where('is_active', true)->count() }}
Aktif Turlar
{{ $tours->where('is_public', true)->count() }}
Yayında
{{ $tours->where('is_featured', true)->count() }}
Öne Çıkan

Kültür Turları

Kültür turlarınızı yönetin

Yeni Kültür Turu
0 tur seçildi
Temizle
@if($tours->count() > 0)
@foreach($tours as $tour)
@if($tour->coverImage?->galleryImage) {{ $tour->name }} @else
@endif @if($tour->is_featured) Öne Çıkan @elseif($tour->is_bestseller) En Çok Satan @elseif($tour->is_new) Yeni @endif @if($tour->is_active && $tour->is_public) Yayında @elseif($tour->is_active && !$tour->is_public) Taslak @else Pasif @endif @if($tour->defaultPricing)
{{ number_format($tour->defaultPricing->adult_price, 0) }} {{ $tour->defaultPricing->currency }}
@endif
{{ $tour->name }}

{{ Str::limit($tour->short_description ?: $tour->description, 100) }}

{{ $tour->departureCity->city ?? 'Belirtilmemiş' }}
{{ $tour->duration }} {{ $tour->duration_type === 'days' ? 'Gün' : 'Saat' }}
{{ $tour->view_count }}
@endforeach
{{ $tours->links() }}
@else

Henüz kültür turu bulunmuyor

İlk kültür turunuzu oluşturarak başlayın

İlk Kültür Turunu Oluştur
@endif
@endsection @push('scripts') @endpush