| {{ __('hotel::modules.stays.stayNumber') }} | {{ __('hotel::modules.stays.room') }} | {{ __('hotel::modules.stays.primaryGuest') }} | {{ __('hotel::modules.stays.checkIn') }} | {{ __('hotel::modules.stays.checkOut') }} | {{ __('hotel::modules.stays.guests') }} | {{ __('hotel::modules.stays.balance') }} | {{ __('hotel::modules.stays.status') }} | {{ __('hotel::modules.stays.action') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $stay->stay_number }} @if(!$stay->reservation_id) Walk-in @endif | {{-- Room --}}
{{ $stay->room?->room_number ?? '—' }}
{{ $stay->room?->roomType?->name ?? '' }}
|
{{-- Primary Guest --}}
@if($primaryGuest)
{{ $primaryGuest->full_name }}
{{ $primaryGuest->phone ?? '—' }}
@else
—
@endif
|
{{-- Check-in --}}
{{ $stay->check_in_at->format('M d, Y') }}
{{ $stay->check_in_at->format('g:i A') }}
|
{{-- Check-out --}}
@if($stay->actual_checkout_at)
{{ $stay->actual_checkout_at->format('M d, Y') }}
{{ $stay->actual_checkout_at->format('g:i A') }}
@else
Exp: {{ $stay->expected_checkout_at->format('M d, Y') }}
{{ $stay->expected_checkout_at->format('g:i A') }}
@endif
|
{{-- Guests --}}
{{ $stay->adults }} A @if($stay->children > 0) · {{ $stay->children }} C @endif | {{-- Balance --}}@if($balance > 0) {{ number_format($balance, 2) }} @else Settled @endif | {{-- Status --}}{{ $stay->status->label() }} | {{-- Action --}}|
|
{{ __('hotel::modules.stays.noStaysFound') }} |
||||||||
{{ __('hotel::modules.stays.room') }}
{{ $selectedStay->room?->room_number ?? '—' }}
{{ __('hotel::modules.stays.roomType') }}
{{ $selectedStay->room?->roomType?->name ?? '—' }}
{{ __('hotel::modules.stays.checkIn') }}
{{ $selectedStay->check_in_at->format('M d, Y · g:i A') }}
{{ $selectedStay->actual_checkout_at ? __('hotel::modules.stays.actualCheckOut') : __('hotel::modules.stays.expectedCheckOut') }}
{{ ($selectedStay->actual_checkout_at ?? $selectedStay->expected_checkout_at)->format('M d, Y · g:i A') }}
{{ __('hotel::modules.stays.adults') }}
{{ $selectedStay->adults }}
{{ __('hotel::modules.stays.children') }}
{{ $selectedStay->children }}
{{ __('hotel::modules.stays.checkInNotes') }}
{{ $selectedStay->check_in_notes }}
{{ __('hotel::modules.stays.checkOutNotes') }}
{{ $selectedStay->check_out_notes }}
{{ __('hotel::modules.stays.guestDetails') }}
{{ __('hotel::modules.guest.phone') }}
{{ $g->phone ?: '—' }}
{{ __('hotel::modules.guest.email') }}
{{ $g->email ?: '—' }}
{{ __('hotel::modules.guest.idType') }}
{{ $g->id_type ? ucwords(str_replace('_', ' ', $g->id_type)) : '—' }}
{{ __('hotel::modules.guest.idNumber') }}
{{ $g->id_number ?: '—' }}
{{ __('hotel::modules.stays.noGuests') }}
@endforelse{{ __('hotel::modules.stays.folioSummary') }}
{{-- Totals card --}}{{ __('hotel::modules.stays.totalCharges') }}
{{ number_format($folio->total_charges, 2) }}
{{ __('hotel::modules.stays.totalPaid') }}
{{ number_format($folio->total_payments, 2) }}
{{ __('hotel::modules.stays.balance') }}
{{ number_format($folio->balance, 2) }}
{{ __('hotel::modules.stays.charges') }}
{{ $line->description }}
{{ \Carbon\Carbon::parse($line->posting_date)->format('M d, Y') }} · {{ str_replace('_', ' ', $line->type->value) }}
{{ __('hotel::modules.stays.payments') }}
{{ str_replace('_', ' ', $payment->payment_method) }}
@if($payment->transaction_reference)Ref: {{ $payment->transaction_reference }}
@endif{{ __('hotel::modules.stays.staffInfo') }}
{{ __('hotel::modules.stays.checkedInBy') }}
{{ $selectedStay->checkedInBy->name }}
{{ __('hotel::modules.stays.checkedOutBy') }}
{{ $selectedStay->checkedOutBy->name }}