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

{{ __('Subscription Trash List') }}

@endsection @section('content')
@forelse ($plans as $plan) @empty @endforelse
# {{ __('Title') }} {{ __('Price') }} {{ __('Type') }} {{ __('Active Status') }} {{ __('Action') }}
{{ $loop->iteration }} {{ $plan->title }} {{ currency($plan->price) }} {{ $plan->plan_type }} @if (!$plan->is_active)
{{ __('De-Activated') }}
@else
{{ __('Activated') }}
@endif
{{ __('Restore') }}
{{ __('No Plans Available') }}
{{-- {{ $requests->links() }} --}}
@endsection @push('styles') @endpush