@php $logoPath = public_path('assets/logo.png'); $logoSrc = file_exists($logoPath) && isset($message) ? $message->embed($logoPath) : asset('assets/logo.png'); @endphp

Additional Charges Notification

Booking #{{ $billing->booking_id }}

Dear {{ $billing->booking->full_name }},

This is to notify you that new charges have been added to your room bill for your stay at G4 Homez.

New Charges Added:

@php $addedTotal = 0; @endphp @foreach($newItems as $item) @php $addedTotal += $item['amount'] * $item['quantity']; @endphp @endforeach
Description Qty Amount
{{ $item['description'] }}
{{ \Carbon\Carbon::parse($item['item_date'])->format('M d, Y h:i A') }}
{{ $item['quantity'] }} ${{ number_format($item['amount'] * $item['quantity'], 2) }}
Total for these items: ${{ number_format($addedTotal, 2) }}

Billing Summary

Previous Total: ${{ number_format($billing->amount_to_pay - $addedTotal, 2) }}
Newly Added Charges: + ${{ number_format($addedTotal, 2) }}
New Total Bill: ${{ number_format($billing->amount_to_pay, 2) }}
Amount Paid So Far: - ${{ number_format($billing->amount_paid, 2) }}
Remaining Balance: ${{ number_format($billing->amount_to_pay - $billing->amount_paid, 2) }}

You can view your detailed bill or make a payment at any time by contacting our front desk.