@extends('layouts.adminapp')
@section('content')
{{--
--}}
@if ($Balance > 0)
{{__('lng.BalanceAmount')}} : @currency($Balance)
@else
{{__('lng.Advance')}} : @currency(abs($Balance))
@endif
{{__('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
@endsection