@extends('layouts.adminapp')
@section('content')
{{-- Member Registeration --}}
# | {{__('lng.Date')}} | {{__('lng.Voucher')}} | {{__('lng.Head')}} | {{__('lng.Amount')}} | {{__('lng.Action')}} |
---|---|---|---|---|---|
{{++$si}} | {{$Date}} | {{$Donation->VoucherType->title ?? ''}} | {{$Donation->payhead->title ?? ''}} | @amount($Donation->amount) |
{{__('lng.TotalAmount')}} | @currency($DonationTotal) |
---|
# | {{__('lng.Date')}} | {{__('lng.FundList')}} | {{__('lng.CollectionAmount')}} | {{__('lng.Payed')}} | {{__('lng.Status')}} | {{__('lng.Action')}} |
---|---|---|---|---|---|---|
{{++$si}} | {{$Date}} | {{$FundListDetail->FundList->title ?? ''}} | @amount($FundListDetail->amount) |
|
@if($FundListDetail->amount<=$FundListDetail->Payments()->where('isCancelled',false)->orWhereNull('isCancelled')->sum('amount'))
{{__('lng.Completed')}}
@else
{{__('lng.Pending')}}
@endif
|
@php $VoucherType=$FundListDetail->FundList->voucher_type_id; $VoucherNo=\App\Models\FundListPayment::where('vouchertype_id',$VoucherType)->max('vouchernumber')+1; @endphp |
{{ __('lng.Total') }} | @currency($Collection) | @currency($FundListAmount) |
@if ($FundListAmount - $Collection >= 0)
{{__('lng.Completed')}}
@else
{{__('lng.Pending')}}
@endif
|