@extends('layouts.app') @section('title', 'Group Booking ' . $group->group_no) @section('page_title', $group->group_no) @section('page_subtitle', 'Group booking for ' . $group->guest_name) @section('nav_reservations', 'bg-teal-50 text-teal-700 font-semibold') @section('content') @if (session('success'))
{{ session('success') }}
{{ $reservations->count() }} rooms ยท {{ $nights }}N
Check-in
{{ $group->check_in->format('M j, Y') }}
Check-out
{{ $group->check_out->format('M j, Y') }}
Grand Total
₱{{ number_format($totalAmount, 0) }}
{{ $group->guest_name }}
@if($group->guest_phone){{ $group->guest_phone }}
@endif{{ $group->guest_email }}
@endif @if($group->notes){{ $group->notes }}
@endif {{-- Payment summary --}}Paid
₱{{ number_format($totalPaid, 0) }}
Balance
₱{{ number_format($balanceDue, 0) }}
| Booking # | Room | Type | Rate/Night | Room Total | Paid | Balance | Status | Action |
|---|---|---|---|---|---|---|---|---|
| {{ $res->booking_no }} |
Room {{ $res->room_no }} |
{{ $res->room_type }} |
₱{{ number_format($res->rate, 0) }} |
₱{{ number_format($charges, 0) }} |
₱{{ number_format($paid, 0) }} |
@if ($bal > 0)
₱{{ number_format($bal, 0) }} @else Settled @endif |
{{ $statusLabel[$res->status] ?? ucfirst($res->status) }} | |
| Total | ₱{{ number_format($totalAmount, 0) }} | ₱{{ number_format($totalPaid, 0) }} | ₱{{ number_format($balanceDue, 0) }} | |||||
Payments and folio charges are managed per room. Click View on each room to add payments or extra charges.