@include('Commonheader') @php /*echo '
';
        print_r($groupedReservations);
        echo '
';*/ @endphp @foreach($groupedReservations as $resid => $reservationGroup) @php $reservation = $reservationGroup->first(); // get first row for header info $totalRooms = $reservationGroup->sum('roomqty'); $totalAdults = $reservationGroup->sum('adult') + $reservationGroup->sum('extrapax'); $totalChilds = $reservationGroup->sum('child'); $subTotal = $reservationGroup->sum('total'); $totalGST = $reservationGroup->sum('gst'); $totalDiscount = $reservationGroup->sum('discount_amt'); $advancePaid = $reservationGroup->sum('advance'); @endphp
Hotel Logo
Hotel Development
No. 118, Anna Salai, Manickam Ln, Guindy, Chennai - 600032
Phone: +91 98414 16638 | Email: info@bluebase.in
Reservation Details
Reservation No{{ $reservation->resno }}
Reservation Date{{ $reservation->booking_date }}
Arrival Date{{ $reservation->arrival_date }}
Departure Date{{ $reservation->departure_date }}
No. of Days{{ $reservation->nights }}
No. of Rooms{{ $totalRooms }}
No. of GuestsAdults: {{ $totalAdults }} | Child: {{ $totalChilds }}
Booking Status{{ $reservation->stage }}
Guest Information
Guest Name{{ $reservation->guest_firstname.' '.$reservation->guest_lastname }}
City{{ $reservation->city }}
Mobile{{ $reservation->phoneno }}
Email{{ $reservation->email }}
Special Requests{{ $reservation->special_instructions ?? 'N/A' }}
@foreach($reservationGroup as $room) @endforeach
Room Tariff Details
Room Type Qty Days Adult Child Extra Person Rate GST Total
{{ $room->roomtype }} ({{ $room->mealplan }}) {{ $room->roomqty }} {{ $room->nights }} {{ $room->adult }} {{ $room->child }} {{ $room->extrapax }} {{ number_format($room->net, 2) }} {{ number_format($room->gst, 2) }} {{ number_format($room->total, 2) }}
Sub Total {{ number_format($subTotal, 2) }}
Total GST {{ number_format($totalGST, 2) }}
Discount {{ number_format($totalDiscount, 2) }}
Grand Total {{ number_format($subTotal + $totalGST - $totalDiscount, 2) }}
Advance Paid {{ number_format($advancePaid, 2) }}
Balance Total {{ number_format($subTotal + $totalGST - $totalDiscount - $advancePaid, 2) }}
General Instructions
  1. Check-in time is 2:00 PM and check-out time is 12:00 PM.
  2. Government ID proof required at check-in.
  3. Room tariff is per room per night, exclusive of transfers unless specified.
  4. Cancellation allowed up to 2 days prior to arrival, after which one night charge may apply.

We appreciate your stay with us!

@endforeach