{{-- Back Link --}}
Torna alle mie prenotazioni
{{-- Page Title --}}

Prenotazione del {{ \Carbon\Carbon::parse($reservation->giorno)->format('d/m/Y') }}

{{-- Detail Card --}}

Dettagli Prenotazione

@php $statoColors = [ 'confermata' => '#16a34a', 'in_attesa' => '#d97706', 'annullata' => '#dc2626', ]; $statoLabels = [ 'confermata' => 'Confermata', 'in_attesa' => 'In Attesa', 'annullata' => 'Annullata', ]; $color = $statoColors[$reservation->stato] ?? '#6b7280'; $label = $statoLabels[$reservation->stato] ?? ucfirst($reservation->stato); @endphp
Giorno
{{ \Carbon\Carbon::parse($reservation->giorno)->format('d/m/Y') }}
Ora
{{ \Carbon\Carbon::parse($reservation->ora)->format('H:i') }}
Numero Persone
{{ $reservation->numero_persone }} {{ $reservation->numero_persone === 1 ? 'persona' : 'persone' }}
Stato
{{ $label }}
Nome
{{ $reservation->nome }}
Email
{{ $reservation->email }}
Telefono
{{ $reservation->telefono }}
@if($reservation->note)
Note
{{ $reservation->note }}
@endif