@extends('layouts.print') @section('title', 'Cancellations & No-Shows — ' . \Carbon\Carbon::parse($from)->format('M j') . '–' . \Carbon\Carbon::parse($to)->format('M j, Y')) @section('content') @php $propName = \App\Models\Setting::get('property_name', config('app.name', 'Parkview Hotel')); $periodLabel = \Carbon\Carbon::parse($from)->format('M j') . ' – ' . \Carbon\Carbon::parse($to)->format('M j, Y'); @endphp
{{ $label }}
{{ $value }}
{{ $sub }}
No lost bookings for this period.
@else| Source | Lost | Room-Nights | Lost Revenue |
|---|---|---|---|
| {{ $source }} | {{ $row['count'] }} | {{ $row['nights'] }} | ₱{{ number_format($row['revenue'], 2) }} |
No cancellations or no-shows in this period.
@else| Guest | Room | Source | Arrival | Nights | Status | Lost | Forfeited |
|---|---|---|---|---|---|---|---|
| {{ $row['guest_name'] }} | {{ $row['room_no'] }} | {{ $row['source'] }} | {{ $row['check_in']->format('M j, Y') }} | {{ $row['nights'] }} | {{ $row['status'] === 'no_show' ? 'No Show' : 'Cancelled' }} | ₱{{ number_format($row['amount'], 2) }} | {{ $row['forfeited'] > 0 ? '₱' . number_format($row['forfeited'], 2) : '—' }} |
| Total | ₱{{ number_format($lostRevenue, 2) }} | ₱{{ number_format($forfeitedTotal, 2) }} | |||||