| {{ __('hotel::modules.reservation.reservationNumber') }} | {{ __('hotel::modules.reservation.guest') }} | {{ __('hotel::modules.reservation.checkIn') }} | {{ __('hotel::modules.reservation.checkOut') }} | {{ __('hotel::modules.reservation.rooms') }} | {{ __('hotel::modules.reservation.amount') }} | {{ __('hotel::modules.reservation.status') }} | {{ __('hotel::modules.reservation.action') }} |
|---|---|---|---|---|---|---|---|
| {{ $reservation->reservation_number }} | {{-- Guest --}}
{{ $initials }}
{{ $reservation->primaryGuest->full_name }}
|
{{-- Check-in --}}
{{ $reservation->check_in_date->format('M d, Y') }}
|
{{-- Check-out --}}
{{ $reservation->check_out_date->format('M d, Y') }}
|
{{-- Rooms --}}
{{ $reservation->rooms_count }} | {{-- Amount --}}{{ currency_format($reservation->total_amount) }} | {{-- Status --}}{{ $reservation->status->label() }} | {{-- Actions --}}
@if(user_can('Update Hotel Reservation'))
|
|
{{ __('hotel::modules.reservation.noReservationsFound') }} |
|||||||
{{ $activeReservation->primaryGuest?->full_name }}
{{ $activeReservation->check_in_date->format('M d') }} @if($activeReservation->check_in_time) · {{ \Carbon\Carbon::parse($activeReservation->check_in_time)->format('g:i A') }} @endif → {{ $activeReservation->check_out_date->format('M d, Y') }}
{{ $nights }} {{ Str::plural('night', $nights) }}
{{ $activeReservation->rooms_count }} {{ Str::plural('room', $activeReservation->rooms_count) }}
{{ $activeReservation->primaryGuest?->full_name }}
| {{ __('hotel::modules.reservation.date') }} | {{ __('hotel::modules.reservation.method') }} | {{ __('hotel::modules.reservation.reference') }} | {{ __('hotel::modules.reservation.amount') }} |
|---|---|---|---|
| {{ $activeReservation->created_at->format('M d, Y') }} | {{ __('hotel::modules.reservation.advancePaid') }} | — | {{ currency_format($advancePaid) }} |
| {{ $payment->created_at->format('M d, Y H:i') }} | {{ $payment->payment_method }} | {{ $payment->transaction_reference ?? '—' }} | {{ currency_format($payment->amount) }} |
{{ __('hotel::modules.reservation.noPaymentsRecorded') }}
@endif {{-- Balance summary strip --}}{{ __('hotel::modules.reservation.totalPaid') }}
{{ currency_format($totalPaid) }}
{{ __('hotel::modules.reservation.balanceDue') }}
{{ $balanceDue > 0 ? currency_format($balanceDue) : '✓ ' . currency_format(0) }}
{{ $activeReservation->special_requests }}