@extends('layouts.adminapp') @section('title') {{ __('lng.Subscription') }} - {{ __('lng.PaymentHistory') }} @endsection @section('active_transactions', 'active') @section('open_transactions', 'open') @section('open_subscription', 'open') @section('active_subscription', 'active') @section('active_subscription_index', 'active') @section('content')

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

{{ $House->name }}
@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')

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

@endsection