@if(!empty($data['top_message'])) {{ $data['top_message'] }} @endif

{{ $data['hero_title'] ?? 'Pricing' }}

{{ $data['hero_description'] ?? 'View ticket prices, session times, booking fees, and notes for every water.' }}

@if(!empty($data['hero_image']))
{{ $data['hero_title'] ?? 'Pricing' }}
@endif
@forelse($pricings as $pricing)
@php($pricingWaters = $pricing->waters->isNotEmpty() ? $pricing->waters->pluck('name') : collect([$pricing->water?->name])->filter())
Applies To
@foreach($pricingWaters as $waterName) {{ $waterName }} @endforeach

{{ $pricing->title }}

{{ $pricing->pricingTypeLabel() }}
@if($pricing->session_information)
{{ $pricing->session_information }}
@endif @if($pricing->minimum_age || $pricing->adult_required_under_age)
@if($pricing->minimum_age)
Minimum Age
{{ $pricing->minimum_age }}
@endif @if($pricing->adult_required_under_age)
Adult Required Under
{{ $pricing->adult_required_under_age }}
@endif
@endif @if(!empty($pricing->items))
@foreach($pricing->items as $item) @endforeach
Ticket / SessionType / NotesPrice
{{ $item['name'] ?? '' }} {{ $item['details'] ?? '' }} {{ $pricing->formattedPrice($item['price'] ?? '') }}
@endif
@if($pricing->booking_fee_required)
Booking Fee
{{ $pricing->booking_fee_amount ? $pricing->formattedPrice($pricing->booking_fee_amount) : 'Required' }}
@if($pricing->booking_fee_terms)
{{ $pricing->booking_fee_terms }}
@endif
@endif
@if($pricing->notes)
{{ $pricing->notes }}
@endif
@empty
No pricing has been added yet.
@endforelse