@extends('common.emails.layouts.master') @section('style') @include('common.emails.layouts.style') @endsection @section('body')
Dear {{ $payment->tenant->name }},
I hope this email finds you well. Please find below the breakdown of your monthly rental bill for your apartment {{ ($payment->tenantHouse->unit->floor->house->name ?? "None")." | ".($payment->tenantHouse->unit->floor->name ?? "None")." | ".($payment->tenantHouse->unit->name ?? "None") }} for the month of {{ months()[$payment->month] }}, {{ $payment->year }}.
| #Sl. | Rent Items | Month/Year | Square Feet | Rent Per S.F | Unit | Unit Price | Amount |
|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $houserent->rentHead->name }} | {{ months()[$houserent->bill_month]."/".$houserent->bill_year }} | {!! numberFormat($houserent->sf) !!} | {!! numberFormat($houserent->ppsf) !!} | {!! numberFormat($houserent->unit) !!} | {!! numberFormat($houserent->ppu) !!} | {!! numberFormat($houserent->amount) !!} |
|
|
Sub-Total | {!! numberFormat($subTotal) !!} | |||||
| Arrear | {!! numberFormat($payment->arrear) !!} | ||||||
| Total | {!! numberFormat($total) !!} | ||||||
| Paid | {!! numberFormat($paid) !!} | ||||||
| Due | {!! numberFormat($total - $paid) !!} |
||||||