{{-- ================================================================ resources/views/admin/bills/invoice-pdf.blade.php Used by DomPDF for PDF generation AND print view ================================================================ --}}
| # | Description | Details | Amount |
|---|---|---|---|
| 1 | Monthly Rent | Flat {{ $bill->flat->flat_number }} β {{ $bill->bill_month->format('F Y') }} | ΰ§³{{ number_format($bill->rent_amount, 2) }} |
| 2 | Service Charge | Water, Garbage, Common Area | ΰ§³{{ number_format($bill->service_charge, 2) }} |
| 3 | Electricity Bill | @if($bill->meterReading) Units: {{ number_format($bill->meterReading->units_consumed, 2) }} ({{ number_format($bill->meterReading->previous_reading,2) }} β {{ number_format($bill->meterReading->current_reading,2) }}) @ ΰ§³{{ $bill->meterReading->unit_rate }}/unit @else Electricity charges @endif | ΰ§³{{ number_format($bill->electricity_bill, 2) }} |
| {{ $bill->electricity_bill > 0 ? 4 : 3 }} | Gas Bill | Gas consumption charges | ΰ§³{{ number_format($bill->gas_bill, 2) }} |
| β | Water Bill | Water consumption charges | ΰ§³{{ number_format($bill->water_bill, 2) }} |
| β | Late Fee | Applied after due date | ΰ§³{{ number_format($bill->late_fee, 2) }} |
| β | Discount | Special discount applied | -ΰ§³{{ number_format($bill->discount, 2) }} |