@extends('layouts.adminapp') @section('title') {{ __('lng.FundList') }} - {{ __('lng.MemberInfo') }} @endsection @section('open_payments', 'open') @section('active_payments', 'active') @section('active_fund_list', 'active') @section('content')
{{ __('lng.SiNo') }} | {{ __('lng.Photo') }} | {{ __('lng.Name') }} | {{ __('lng.House') }} | {{ __('lng.Contact') }} | {{ __('lng.CollectionAmount') }} | {{ __('lng.Payed') }} | {{ __('lng.Status') }} | {{ __('lng.Action') }} |
---|---|---|---|---|---|---|---|---|
{{ ++$si }} |
|
{{ $Detail->Member->name }} | {{ $Detail->Member->house->name }} | {{ $Detail->Member->contact }} | @amount($Detail->amount) |
|
@if ($Detail->amount <= $Detail->Payments()->where('isCancelled', false)->orWhereNull('isCancelled')->sum('amount')) {{ __('lng.Completed') }} @else {{ __('lng.Pending') }} @endif |
|