@php $title = translate('Do you want to move to Trash'); $text = translate('If you move to Trash, the course and all related data will be trashed.'); $backendSetting = get_theme_option(key: 'backend_general') ?? null; $currency = $backendSetting['currency'] ?? 'USD-$'; $currencySymbol = get_currency_symbol($currency); @endphp {{ translate('Manage subscribe') }}
@if (count($subscribes) > 0)
@foreach ($subscribes as $subscribe) @php $translations = parse_translation($subscribe); @endphp @endforeach
{{ translate('Title') }} {{ translate('Total Useable') }} {{ translate('Total Days') }} {{ translate('Price') }} {{ translate('Status') }} {{ translate('Action') }}
{{ $translations['title'] ?? ($subscribe->title ?? '') }} {{ $subscribe->usable_count ?? '' }} {{ $subscribe->days ?? '' }} {{ $currencySymbol }}{{ $subscribe->price ?? '' }}
@if ($subscribe->trashed()) @php $title = translate('Are you sure you want to delete this permanently'); $text = translate( 'If You delete it,course and course related all data will be deleted permanently.', ); @endphp @else @endif
{{ $subscribes->links('portal::admin.pagination.paginate') }} @else @endif