@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Subscription List')) @section('header-title')

{{ __('Subscription Plans') }}

@endsection @section('content')
@csrf
{{ __('Trashes') }}
{{ $totalTrash }}
@forelse ($plans as $plan) @empty @endforelse
# {{ __('Title') }} {{ __('Price') }} {{ __('Plan') }} {{ __('Status') }} {{ __('Action') }}
{{ generateID($loop->iteration) }} {{ $plan->title }} {{ currency($plan->price) }} {{ $plan->plan_type }} @if (!$plan->is_active)
{{ __('Inactive') }}
@else
{{ __('Active') }}
@endif
{{ __('View Details') }} {{ __('Edit Plan') }} {{ __('Delete Plan') }}
{{ __('No Plans Available') }}
{{-- {{ $requests->links() }} --}}
@endsection @push('styles') @endpush