@extends('agency.layouts.app') @section('title', $tour->name . ' - Fiyatlandırma') @section('page_title', 'Günübirlik Tur Düzenle') @php $breadcrumbs = [ ['title' => 'Ana Sayfa', 'url' => route('agency.dashboard')], ['title' => 'Günübirlik Turlar', 'url' => route('agency.products.gunubirlik-turlar.index')], ['title' => $tour->name, 'url' => route('agency.products.gunubirlik-turlar.show', $tour)], ['title' => 'Fiyatlandırma', 'url' => ''] ]; @endphp @push('styles') @endpush @section('content')

{{ $tour->name }}

Tur Kodu: {{ $tour->code }}
{{ $tour->start_time }} - {{ $tour->end_time }}
{{ $tour->departureCity?->city ?? 'Belirtilmemiş' }}
@include('agency.products.gunubirlik-turlar._nav', ['active' => 'pricing'])
Fiyatlandırma Bilgisi

Günübirlik turlar için tek bir fiyatlandırma yapısı kullanılır. Fiyatlar tüm tarihler için geçerlidir.

Mevcut Fiyatlar
Yetişkin
{{ number_format($tour->adult_price, 2) }}
{{ $tour->currency ?? 'TRY' }}
Çocuk
{{ number_format($tour->child_price, 2) }}
{{ $tour->currency ?? 'TRY' }}
@if($tour->child_min_age || $tour->child_max_age)
{{ $tour->child_min_age ?? 0 }}-{{ $tour->child_max_age ?? 12 }} yaş
@endif
Bebek
{{ number_format($tour->infant_price, 2) }}
{{ $tour->currency ?? 'TRY' }}
@if($tour->infant_max_age)
0-{{ $tour->infant_max_age }} yaş
@endif
Fiyatları Güncelle
@csrf @method('PUT')
@error('adult_price')
{{ $message }}
@enderror
@error('child_price')
{{ $message }}
@enderror
Çocuk fiyatı için minimum yaş
Çocuk fiyatı için maksimum yaş
Bebek fiyatı için maksimum yaş
@error('infant_price')
{{ $message }}
@enderror
Geri
@endsection