@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Subscriptions and Packs')) @section('titlebar_actions')
{{ __('Create New Subscription') }} {{ __('Create New Token Pack') }}
@endsection @section('content')
@if ($settings_two->liquid_license_type !== 'Extended License')
{{ __('To access this page, you should upgrade to Extended License.') }} {{ __('Upgrade License') }}
@else @if ($gatewayError == true)
{{ __('Gateway is set to use sandbox. Please set mode to development!') }}
@endif {{ __('Status') }} {{ __('Type') }} {{ __('Name') }} {{ __('Price') }} {{ __('Frequency') }} {{ __('Updated At') }} {{ __('Actions') }} @foreach ($plans as $entry) {{ $entry->active == 1 ? __('Active') : __('Passive') }} {{ $entry->type === 'prepaid' ? __('Token Pack') : __('Subscription') }} {{ $entry->name }} {{ $entry->price }} {{ $entry->type === 'prepaid' ? __('One Time') : __(formatCamelCase($entry->frequency)) }}

{{ $entry->updated_at->toDateString() }} {{ $entry->updated_at->toTimeString() }}

@if ($app_is_demo) @else @endif @endforeach
@endif
@endsection