{{ translate('Manage Bundle') }}
@if ($bundles->count() > 0)
@foreach ($bundles as $bundle) @php $translations = parse_translation($bundle); $title = translate('Do you want to move to Trash'); $text = translate( 'If you move to Trash, all data related to the course bundle and purchase bundle will be trashed.', ); if ($bundle->trashed()) { $title = translate('Are you sure you want to delete this permanently'); $text = translate( 'If You delete it,course bundle and purchase bundle all data will be deleted permanently.', ); } $currency = $bundle->currency ?? 'USD-$'; $currencySymbol = get_currency_symbol($currency); @endphp @endforeach
{{ translate('Title') }} {{ translate('Price') }} {{ translate('Course') }} {{ translate('Date Created') }} {{ translate('Action') }}
@if (fileExists('lms/courses/bundles', $bundle->thumbnail) && $bundle->thumbnail != '') thumb @endif
{{ $currencySymbol }}{{ number_format($bundle->price, 2) }} {{ $bundle?->courses?->count() }} {{ customDateFormate($bundle->created_at) }}
@if ($bundle->trashed()) @else @endif
{{ $bundles->links('portal::admin.pagination.paginate') }}
@else @endif