@extends('layouts.adminapp') @section('content')
{{__('lng.Back')}}
{{--
--}}
@if ($PropertyRent->member_id)

{{$PropertyRent->Member->name}}

{{$PropertyRent->Member->contact}} {{$PropertyRent->Member->house->name}}
@else

{{$PropertyRent->name}}

{{$PropertyRent->phone}} {{$PropertyRent->address}}
@endif
@if ($Balance > 0) {{__('lng.BalanceAmount')}} : @currency($Balance) @else {{__('lng.Advance')}} : @currency(abs($Balance)) @endif
@php $i=0;@endphp @foreach ($RentPayments as $RentPayment) @php $date = date("F-d-Y",strtotime($RentPayment->date));@endphp @endforeach
{{__('lng.SiNo')}} {{__('lng.Date')}} {{__('lng.Amount')}} {{__('lng.Head')}}
{{++$i}} {{$date}} @currency($RentPayment->amount) {{$RentPayment->payhead->title}}
@endsection