@foreach ($reservasHistorico as $reserva) @endforeach
Reserva Check In/Out Establecimiento Huésped Registro Entrada Registro Salida
{{ $reserva->id }} {{ $reserva->check_in->format('d/m/Y') }}
{{ $reserva->check_out->format('d/m/Y') }}
{{ $reserva->establecimiento->nombre }} {{ $reserva->huespedPrincipal()->getFullNameAttribute() }} @if ($fecha = $reserva->adicional()->first()) @if($fecha->fecha_entrada) {{ \Carbon\Carbon::parse($fecha->fecha_entrada)->format('d/m/Y g:i a') }} @endif @endif @if ($fecha = $reserva->adicional()->first()) @if($fecha->fecha_salida) {{ \Carbon\Carbon::parse($fecha->fecha_salida)->format('d/m/Y g:i a') }} @endif @endif