@extends('layouts.adminapp') @section('content')
| {{__('lng.Name')}} | {{__('lng.Contact')}} | {{__('lng.Address')}} | {{__('lng.Property')}} | {{__('lng.Advance')}} | {{__('lng.ExpireDate')}} |
|---|---|---|---|---|---|
| {{$PropertyRent->Member->name ?? $PropertyRent->name}} | {{$PropertyRent->Member->contact ?? $PropertyRent->phone}} | {{$PropertyRent->Member->house->name ?? $PropertyRent->address}} | {{$PropertyRent->Property->title}} | {{$PropertyRent->advance}} | {{$expire}} |
| {{__('lng.SiNo')}} | {{__('lng.Month')}} | {{__('lng.MonthlyAmount')}} | {{__('lng.PaidFee')}} |
|---|---|---|---|
| {{++$si}} | {{$monthName}} | @currency($PropertyRent->monthly_rent) | @if ($PayAmount >= 0) @currency($PropertyRent->monthly_rent) @else 0 @endif | @php $Month++; @endphp
| @if ($Balance > 0) {{__('lng.BalanceAmount')}} @else {{__('lng.Advance')}} @endif | @currency(abs($Balance)) | ||