{{-- Pricing --}}
@if($pricing->isNotEmpty())
Pricing
@foreach($pricing as $price)
-
{{ $price->label }}
${{ number_format($price->price) }}
@if($price->duration_minutes)
/ {{ $price->duration_minutes }} min
@endif
@endforeach
@endif
{{-- CTA --}}
@if($activity->booking_type === 'redirect' && $activity->external_booking_url)
Book externally
@elseif($activity->booking_type !== 'open_access')
Book now
@endif
{{-- Quick info chips --}}
@if($activity->season && $activity->season !== 'all')
{{ $activity->season }}
@endif
@if($activity->min_participants)
Min {{ $activity->min_participants }} guests
@endif
@if($activity->min_duration_minutes)
From {{ $activity->min_duration_minutes }} min
@endif