@php $money = fn ($value) => '€'.number_format((float) $value, 0); $selectedExperience = $experienceId ? $experiences->firstWhere('id', $experienceId) : null; $selectedYacht = $yachtId ? $yachts->firstWhere('id', $yachtId) : null; $selectedDestination = $destinationId ? $destinations->firstWhere('id', $destinationId) : null; $isUnavailable = fn ($yacht) => $availableYachtIds !== null && ! in_array($yacht->id, $availableYachtIds, true); $canContinue = $pricing !== null && $availableYachtIds !== null && $selectedYacht && in_array($selectedYacht->id, $availableYachtIds, true); $prettyDate = $date ? \Carbon\Carbon::parse($date)->translatedFormat('D, j F Y') : null; @endphp
{{-- =============================================================== HEADER --}}

Choose your date, your experience and your yacht. We'll prepare the rest — a crew, a route and a day at sea entirely your own.

{{-- =============================================================== WIZARD GRID --}}
@if (session('wizard-notice'))
{{ session('wizard-notice') }}
@endif
{{-- ==================================== LEFT — SELECTION STEPS --}}
{{-- ----- STEP 1 · DATE ----------------------------- --}}
01

Your Date

When do you sail?

No same-day departures.

{{-- ----- STEP 2 · EXPERIENCE ----------------------- --}}
02

The Experience

Choose your day at sea.

@foreach ($experiences as $exp) @endforeach
{{-- ----- STEP 3 · DESTINATION ---------------------- --}}
03

The Route

Where to?

@foreach ($destinations as $destination) @endforeach

Optional — your captain will tailor the route on the day.

{{-- ----- STEP 4 · GUESTS --------------------------- --}}
04

The Guests

How many aboard?

{{ $guests }}

Max {{ $maxGuests }} guests for this yacht.

{{-- ----- STEP 5 · YACHT ---------------------------- --}}
05

The Yacht

Select your vessel.

@if ($availableYachtIds === null)

Pick a date and experience to see which yachts are free.

@endif
@foreach ($yachts as $yacht) @php $unavailable = $isUnavailable($yacht); @endphp @endforeach
{{-- ==================================== RIGHT — LIVE SUMMARY --}}