@extends('layouts.adminapp') @section('content')
{{__('lng.Author')}} | {{__('lng.RegisterNumber')}} | {{__('lng.HouseName')}} | {{__('lng.Phone')}} | {{__('lng.Place')}} | {{__('lng.Post')}} | {{__('lng.Pin')}} | {{__('lng.City')}} | {{__('lng.District')}} | {{__('lng.State')}} |
---|---|---|---|---|---|---|---|---|---|
{{$Author->name}} | {{$Author->House->registernumber ?? ''}} | {{$Author->House->name ?? ''}} | {{$Author->contact}} | {{$Author->House->place ?? ''}} | {{$Author->House->post ?? ''}} | {{$Author->House->pin ?? ''}} | {{$Author->House->city ?? ''}} | {{$Author->House->district ?? ''}} | {{$Author->House->state ?? ''}} |
# | {{__('lng.Date')}} | {{__('lng.FundList')}} | {{__('lng.CollectionAmount')}} | {{__('lng.Payed')}} | {{__('lng.Status')}} | |
---|---|---|---|---|---|---|
{{++$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
|
|
{{ __('lng.Total') }} | @currency($Collection) | @currency($FundListAmount) |
@if ($FundListAmount - $Collection >= 0)
{{__('lng.Completed')}}
@else
{{__('lng.Pending')}}
@endif
|