{{-- resources/views/reservations/in-house.blade.php --}} @extends('layouts.app') @section('title', 'In House') @section('page_title', 'In House') @section('page_subtitle', $reservations->count() . ' guests currently checked in') @section('content')
{{-- Summary --}}No guests in house
No guests are currently checked in
| Reference | Guest | Rooms | Check In | Check Out | Nights Left | Balance | Action |
|---|---|---|---|---|---|---|---|
| {{ $res->reference }} @if($isDueToday) ⚠ Due today @endif |
{{ $res->guest?->first_name }}
{{ $res->guest?->last_name }}
{{ $res->adults }}A
@if($res->children > 0) {{ $res->children }}C @endif
|
@foreach($res->rooms as $rr) {{ $rr->room?->number }} @endforeach | {{ $res->check_in_date->format('d M') }} | {{ $res->check_out_date->format('d M') }} | {{ max(0, $nightsLeft) }} {{ Str::plural('night', max(0, $nightsLeft)) }} | @if($res->balance_due > 0) {{ $res->currency }} {{ number_format($res->balance_due, 2) }} @else Paid @endif |