@extends('layouts.adminapp') @section('content') {{-- Subscription Payment History --}}

{{__('lng.PaymentHistory')}}

{{$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($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