@extends('layouts.app') @section('title', $activity->name . ' — Mzaar Mountain Resort') @section('description', $activity->short_description ?? $activity->description ?? '') @section('content') {{-- Hero --}}
{{ $activity->name }}
@if($activity->category) {{ $activity->category->name }} @endif

{{ $activity->name }}

{{-- Content --}}
{{-- Description --}}
@if($activity->description)
{!! nl2br(e($activity->description)) !!}
@endif
{{-- Sidebar: pricing + book --}}
{{-- 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
@endsection