@extends('layouts.print') @section('title', 'Night Audit — ' . \Carbon\Carbon::parse($date)->format('M j, Y')) @section('content') @php $periodLabel = \Carbon\Carbon::parse($date)->format('l, F j, Y'); $propName = \App\Models\Setting::get('property_name', config('app.name', 'Parkview Hotel')); @endphp
Business date: {{ $periodLabel }}
{{-- Summary --}}{{ $label }}
{{ $value }}
{{ $sub }}
No arrivals for this date.
@else| Guest | Booking # | Room | Nights | Amount | Status |
|---|---|---|---|---|---|
| {{ $res->guest_name }} | {{ $res->booking_no }} | {{ $res->room_no }} · {{ $res->room_type }} | {{ $res->nights }} | ₱{{ number_format($res->amount, 2) }} | {{ \Illuminate\Support\Str::headline($res->status) }} |
No departures for this date.
@else| Guest | Booking # | Room | Amount | Status |
|---|---|---|---|---|
| {{ $res->guest_name }} | {{ $res->booking_no }} | {{ $res->room_no }} · {{ $res->room_type }} | ₱{{ number_format($res->amount, 2) }} | {{ $res->status === 'checked_in' ? 'Still In House' : \Illuminate\Support\Str::headline($res->status) }} |
No payments on this date.
@else| Method | Transactions | Amount |
|---|---|---|
| {{ $method }} | {{ $pm['count'] }} | ₱{{ number_format($pm['total'], 2) }} |
| Total | {{ $payments->count() }} | ₱{{ number_format($totalCollected, 2) }} |
Transaction Detail
| Guest | Room | Method | Reference | Amount |
|---|---|---|---|---|
| {{ $pmt->reservation?->guest_name ?? '—' }} | {{ $pmt->reservation?->room_no ?? '—' }} | {{ $pmt->method }} | {{ $pmt->reference ?? '—' }} | ₱{{ number_format($pmt->amount, 2) }} |
No guests in house.
@else| Guest | Room | Room Type | Check-out |
|---|---|---|---|
| {{ $res->guest_name }} | {{ $res->room_no }} | {{ $res->room_type }} | {{ \Carbon\Carbon::parse($res->check_out)->format('M j, Y') }} |