@extends('mainapp::layouts.backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}}
@csrf

{{ ___('mainapp_common.Filtering') }}

{{ ___('mainapp_subscriptions.Subscription List') }}

{{ ___('mainapp_common.Total')}}: {{ number_format(@$data['total'], 2) }}
@forelse ($data['subscriptions'] ?? [] as $key => $row) @empty @endforelse
{{ ___('mainapp_common.sr_no') }} {{ ___('mainapp_common.Sub domain key') }} {{ ___('mainapp_common.Package') }} {{ ___('mainapp_common.Trx ID') }} {{ ___('mainapp_common.Method') }} {{ ___('mainapp_common.Price') }} {{ ___('mainapp_common.action') }}
{{ ++$key }} {{ @$row->school->sub_domain_key }} {{ $row->package->name }} {{ $row->trx_id }} {{ $row->method }} {{ $row->package->price }} @if ($row->status != App\Enums\SubscriptionStatus::REJECT) @endif

{{ ___('mainapp_common.no_data_available') }}

{{ ___('mainapp_common.please_add_new_entity_regarding_this_table') }}

@isset($data['subscriptions'])
@endif
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush