@php $si=0; @endphp @foreach ($HouseSubscriptions as $HouseSubscription) @foreach (App\Models\House::find($HouseSubscription->HouseID)->members as $Member) @if ($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) @endif @endforeach @endforeach
{{ __('lng.Action') }} {{ __('lng.HouseName') }} {{ __('lng.RegisterNumber') }} {{ __('lng.Authority') }} {{ __('lng.Contact') }} {{ __('lng.SubscriptionAmount') }}
{{ $HouseSubscription->HouseName }} {{ $HouseSubscription->HouseNo }} {{ $Member->name }} {{ $Member->contact }}@currency(App\Models\SubscriptionPackage::find($HouseSubscription->SubscriptionPackageID)->amount ?? '0')
@php $subscriptions = App\Models\House::find($HouseSubscription->HouseID) ->subscriptions() ->orderBy('id', 'DESC') ->where('isCancelled', 0) ->paginate(5); @endphp @foreach ($subscriptions as $PayHistory) @php $DTs = date("F-d-Y",strtotime($PayHistory->date));@endphp @endforeach
{{ __('lng.Date') }} {{ __('lng.Amount') }} {{ __('lng.Head') }}
{{ $DTs }} @currency($PayHistory->amount) {{ $PayHistory->Head->title }}
@csrf

{{ __('lng.Showing') }} {{ $HouseSubscriptions->count() }} {{ __('lng.Items') }}