{{-- PAGE LAYOUNT SECTION ADD --}} @extends('layouts.adminapp') {{-- ADD PAGE TITLE --}} @section('title') {{__('lng.AnnualSubscriptionPayment')}} - {{ __('lng.PaymentHistory') }} @endsection {{-- ADD CONTENT IN LAYOUT PAGE --}} @section('content') {{-- Annual Subscription Payment History --}}
{{$AnnualHouseSubscription->House->name}}
{{__('lng.Back')}}
@php $si=0; @endphp @foreach($Subscriptions as $Subscription) @php $DTs = date("d-m-Y",strtotime($Subscription->date)); $DTt = date("Y-m-d",strtotime($Subscription->date)); @endphp @foreach($Subscription->AnnualHouseSubscription->House->members as $Member) @if($Member->member_relation_id == App\Extra\General\DBFixedValues::AUTHORITY) @endif @endforeach @endforeach
{{__('lng.SiNo')}} {{__('lng.Date')}} {{__('lng.Authority')}} {{__('lng.Amount')}} {{__('lng.Narration')}} {{__('lng.Action')}}
{{++$si}}{{$DTs}}{{$Member->name}}@currency($Subscription->amount) {{$Subscription->narration}}
@csrf @method('delete')

{{$Subscriptions->Count()}} {{__('lng.Items')}}

@endsection