@include('Commonheader')
';
print_r($RoomCharges);
echo '';*/
@endphp
Name: {{ optional($GuestFolioInfo)->guest_firstname . ' ' . optional($GuestFolioInfo)->guest_lastname }}
@isset($GuestFolioInfo->guest_cmpname)Company: {{ $GuestFolioInfo->guest_cmpname }}
@endissetAddress: {{ $GuestFolioInfo->address }}
Arrival Mode: {{ $GuestFolioInfo->arrivalname }}
Room Type: {{ $GuestFolioInfo->roomtypename }}
No. of Days: {{ $GuestFolioInfo->noofdays }}
No. of Pax: {{ $GuestFolioInfo->noofpax }}
GRC: {{ $GuestFolioInfo->grcno }}
Arr. Date: {{ \Carbon\Carbon::parse($GuestFolioInfo?->checkindatetime)->format('d-m-Y H:i') }}
Exp. Checkout: {{ \Carbon\Carbon::parse($GuestFolioInfo?->likelycheckoutdate)->format('d-m-Y H:i') }}
Printed By: {{ session('user_name') }}
| Date Time | Room No | Ref | Charges | Rate | Disc | Taxable | Tax | Debit | Credit | Day Close | ||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| IGST | CGST | SGST | ||||||||||
| Subtotal for ' . $currentDate . ' | ' . number_format($date_amount, 2) . ' | ' . number_format($date_discount, 2) . ' | ' . number_format($date_taxable, 2) . ' | ' . number_format($date_igst, 2) . ' | ' . number_format($date_cgst, 2) . ' | ' . number_format($date_sgst, 2) . ' | ' . number_format($date_debit, 2) . ' | ' . number_format($date_credit, 2) . ' | ' . number_format($date_dayclose, 2) . ' | |||
| {{ $charge->crgdate }} | {{ $charge->roomno }} | {{ $charge->refno ?? '' }} |
@if($charge->remarks)
({{ $charge->remarks .' - '. $charge->narration }}) @else {{ $charge->narration }} @endif |
{{ number_format($charge->amount, 2) }} | {{ number_format($charge->discount, 2) }} | {{ number_format($taxable, 2) }} | {{ number_format($charge->IGST, 2) }} | {{ number_format($charge->CGST, 2) }} | {{ number_format($charge->SGST, 2) }} | {{ number_format($charge->debit, 2) }} | {{ number_format($charge->credit, 2) }} | {{ number_format($charge->debit - $charge->credit, 2) }} |
| Subtotal | {{ number_format($date_amount, 2) }} | {{ number_format($date_discount, 2) }} | {{ number_format($date_taxable, 2) }} | {{ number_format($date_igst, 2) }} | {{ number_format($date_cgst, 2) }} | {{ number_format($date_sgst, 2) }} | {{ number_format($date_debit, 2) }} | {{ number_format($date_credit, 2) }} | {{ number_format($date_dayclose, 2) }} | |||
| Grand Total | {{ number_format($grand_amount, 2) }} | {{ number_format($grand_discount, 2) }} | {{ number_format($grand_taxable, 2) }} | {{ number_format($grand_igst, 2) }} | {{ number_format($grand_cgst, 2) }} | {{ number_format($grand_sgst, 2) }} | {{ number_format($grand_debit, 2) }} | {{ number_format($grand_credit, 2) }} | {{ number_format($grand_dayclose, 2) }} | |||