@extends('agency.layouts.app') @section('title', $tour->name . ' - Fiyatlandırma') @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' => 'Fiyatlandırma', '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

Fiyatlandırma

@if($pricings->count() > 0) @foreach($pricings as $pricing)
{{ $pricing->pricing_name }} @if($pricing->is_default) Varsayılan @endif
@if($pricing->description)
{{ $pricing->description }}
@endif
@if(!$pricing->is_default) @endif
Yetişkin Fiyatı
{{ number_format($pricing->adult_price, 2) }} {{ $pricing->currency }}
@if($pricing->child_price)
Çocuk Fiyatı @if($pricing->child_min_age || $pricing->child_max_age) ({{ $pricing->child_min_age ?? 0 }}-{{ $pricing->child_max_age ?? 12 }} yaş) @endif
{{ number_format($pricing->child_price, 2) }} {{ $pricing->currency }}
@endif @if($pricing->infant_price)
Bebek Fiyatı @if($pricing->infant_max_age) (0-{{ $pricing->infant_max_age }} yaş) @endif
{{ number_format($pricing->infant_price, 2) }} {{ $pricing->currency }}
@endif
@endforeach @else
Henüz fiyatlandırma eklenmemiş

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

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