@extends('layouts.adminapp')
@section('title') {{ __('lng.PayHistory') }} - {{ __('lng.Print') }} @endsection
@section('active_report', 'active')
@section('open_report', 'open')
@section('open_rent_report', 'open')
@section('active_rent_report', 'active')
@section('content')
@include('PrintHeader.header')
{{__('lng.MemberDetails')}}
{{__('lng.Name')}} |
{{__('lng.Contact')}} |
{{__('lng.Address')}} |
{{__('lng.Property')}} |
{{__('lng.Advance')}} |
{{__('lng.ExpireDate')}} |
@php $expire = date("F-d-Y",strtotime($PropertyRent->expire));@endphp
{{$PropertyRent->Member->name ?? $PropertyRent->name}} |
{{$PropertyRent->Member->contact ?? $PropertyRent->phone}} |
{{$PropertyRent->Member->house->name ?? $PropertyRent->address}} |
{{$PropertyRent->Property->title}} |
{{$PropertyRent->advance}} |
{{$expire}} |
{{__('lng.PayRentHistoryReport')}}
{{__('lng.SiNo')}} |
{{__('lng.Date')}} |
{{__('lng.Amount')}} |
{{__('lng.Head')}} |
@php $i=0;@endphp
@foreach ($RentPayments as $RentPayment)
@php $date = date("F-d-Y",strtotime($RentPayment->date));@endphp
{{++$i}} |
{{$date}} |
@currency($RentPayment->amount) |
{{$RentPayment->payhead->title}} |
@endforeach
@if ($Balance > 0)
{{__('lng.BalanceAmount')}}
@else
{{__('lng.Advance')}}
@endif
|
@currency(abs($Balance)) |
@endsection