@extends('agency.layouts.app') @section('title', $tour->name . ' - Tur Programı') @section('page_title', 'Tur Düzenle') @php $breadcrumbs = [ ['title' => 'Ana Sayfa', 'url' => route('agency.dashboard')], ['title' => 'Kültür Turları', 'url' => route('agency.products.kultur-turlari.index')], ['title' => $tour->name, 'url' => route('agency.products.kultur-turlari.show', $tour)], ['title' => 'Program', 'url' => ''] ]; @endphp @push('styles') @endpush @section('content')

{{ $tour->name }}

Tur Kodu: {{ $tour->code }}
{{ $tour->days }} Gün {{ $tour->nights }} Gece
{{ $tour->departureCity?->name ?? 'Belirtilmemiş' }}
@if($tour->tour_type)
{{ $tour->tour_type_display_name }}
@endif

Tur Programı

@if($itineraries->count() > 0) @foreach($itineraries as $dayNumber => $dayItineraries)

{{ $dayNumber }}. Gün

@foreach($dayItineraries as $itinerary)
{{ $itinerary->title }}
@if($itinerary->description)
{!! $itinerary->description !!}
@endif @if($itinerary->location)
{{ $itinerary->location }}
@endif
@endforeach
@endforeach @else
Henüz program eklenmemiş

Başlamak için yukarıdaki "Program Ekle" butonuna tıklayın

@endif
@endsection @push('scripts') @endpush