@php
$r = $reservation;
$money = fn ($value) => '€'.number_format((float) $value, 0);
$r->loadMissing('yacht', 'experience', 'destination');
@endphp
|
New Reservation
{{ $r->reference }}
· {{ $r->source }} · {{ $r->status }}
|
| Customer | {{ $r->customer_name }} |
| Email | {{ $r->customer_email }} |
| Phone | {{ $r->customer_phone ?? '—' }} |
| Date | {{ $r->date->translatedFormat('D, j F Y') }} |
| Experience | {{ $r->experience?->name }} · {{ $r->experience?->time_label }} |
| Yacht | {{ $r->yacht?->full_name }} |
| Destination | {{ $r->destination?->name ?? 'Captain’s choice' }} |
| Guests | {{ $r->number_of_people }} |
| Total | {{ $money($r->total_price) }} |
@if ($r->special_requests)
Special requests
{{ $r->special_requests }}
@endif
|
|