@extends('layouts.app') @section('title', $app_setting['name'] . ' | ' . __('Subscription List')) @section('content')
@csrf
{{ __('Trashes') }}
{{ $totalTrash }}
@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
{{ __('No Plans Available') }}
{{-- {{ $requests->links() }} --}}
@endsection @push('styles') @endpush