|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/lecturebazaar.com/resources/views/admin/users/editTabs/ |
Upload File : |
<div class="tab-pane mt-3 fade" id="purchased_bundles" role="tabpanel" aria-labelledby="purchased_bundles-tab">
<div class="row">
@can('admin_enrollment_add_student_to_items')
<div class="col-12 col-md-6">
<h5 class="section-title after-line">{{ trans('update.add_student_to_bundle') }}</h5>
<form action="{{ getAdminPanelUrl() }}/enrollments/store" method="Post">
<input type="hidden" name="user_id" value="{{ $user->id }}">
<div class="form-group">
<label class="input-label">{{trans('update.bundle')}}</label>
<select name="bundle_id" class="form-control search-bundle-select2"
data-placeholder="{{ trans('update.search_bundle') }}">
</select>
<div class="invalid-feedback"></div>
</div>
<div class=" mt-4">
<button type="button" class="js-save-manual-add btn btn-primary">{{ trans('admin/main.submit') }}</button>
</div>
</form>
</div>
@endcan
<div class="col-12">
<div class="mt-5">
<h5 class="section-title after-line">{{ trans('update.manual_added_bundles') }}</h5>
<div class="table-responsive mt-3">
<table class="table table-striped table-md">
<tr>
<th>{{trans('update.bundle')}}</th>
<th>{{ trans('admin/main.type') }}</th>
<th>{{ trans('admin/main.price') }}</th>
<th>{{ trans('admin/main.instructor') }}</th>
<th class="text-center">{{ trans('update.added_date') }}</th>
<th class="text-right">{{ trans('admin/main.actions') }}</th>
</tr>
@if(!empty($manualAddedBundles))
@foreach($manualAddedBundles as $manualAddedBundle)
<tr>
<td width="25%">
<a href="{{ !empty($manualAddedBundle->bundle) ? $manualAddedBundle->bundle->getUrl() : '#1' }}" target="_blank" class="">{{ !empty($manualAddedBundle->bundle) ? $manualAddedBundle->bundle->title : trans('update.deleted_item') }}</a>
</td>
<td>
@if(!empty($manualAddedBundle->bundle))
{{ trans('admin/main.'.$manualAddedBundle->bundle->type) }}
@endif
</td>
<td>
@if(!empty($manualAddedBundle->bundle))
{{ !empty($manualAddedBundle->bundle->price) ? handlePrice($manualAddedBundle->bundle->price) : '-' }}
@else
{{ !empty($manualAddedBundle->amount) ? handlePrice($manualAddedBundle->amount) : '-' }}
@endif
</td>
<td width="25%">
@if(!empty($manualAddedBundle->bundle))
<p>{{ $manualAddedBundle->bundle->creator->full_name }}</p>
@else
<p>{{ $manualAddedBundle->seller->full_name }}</p>
@endif
</td>
<td class="text-center">{{ dateTimeFormat($manualAddedBundle->created_at,'j M Y | H:i') }}</td>
<td class="text-right">
@can('admin_enrollment_block_access')
@include('admin.includes.delete_button',[
'url' => getAdminPanelUrl().'/enrollments/'. $manualAddedBundle->id .'/block-access',
'tooltip' => trans('update.block_access'),
'btnIcon' => 'fa-times-circle'
])
@endcan
</td>
</tr>
@endforeach
@endif
</table>
<p class="font-12 text-gray mt-1 mb-0">{{ trans('update.manual_add_hint') }}</p>
</div>
</div>
</div>
<div class="col-12">
<div class="mt-5">
<h5 class="section-title after-line">{{ trans('update.manual_disabled_bundles') }}</h5>
<div class="table-responsive mt-3">
<table class="table table-striped table-md">
<tr>
<th>{{trans('update.bundle')}}</th>
<th>{{ trans('admin/main.type') }}</th>
<th>{{ trans('admin/main.price') }}</th>
<th>{{ trans('admin/main.instructor') }}</th>
<th class="text-right">{{ trans('admin/main.actions') }}</th>
</tr>
@if(!empty($manualDisabledBundles))
@foreach($manualDisabledBundles as $manualDisabledBundle)
<tr>
<td width="25%">
<a href="{{ !empty($manualDisabledBundle->bundle) ? $manualDisabledBundle->bundle->getUrl() : '#1' }}" target="_blank" class="">{{ !empty($manualDisabledBundle->bundle) ? $manualDisabledBundle->bundle->title : trans('update.deleted_item') }}</a>
</td>
<td>
@if(!empty($manualDisabledBundle->bundle))
{{ trans('admin/main.'.$manualDisabledBundle->bundle->type) }}
@endif
</td>
<td>
@if(!empty($manualDisabledBundle->bundle))
{{ !empty($manualDisabledBundle->bundle->price) ? handlePrice($manualDisabledBundle->bundle->price) : '-' }}
@else
{{ !empty($manualDisabledBundle->amount) ? handlePrice($manualDisabledBundle->amount) : '-' }}
@endif
</td>
<td width="25%">
@if(!empty($manualDisabledBundle->bundle))
<p>{{ $manualDisabledBundle->bundle->creator->full_name }}</p>
@else
<p>{{ $manualDisabledBundle->seller->full_name }}</p>
@endif
</td>
<td class="text-right">
@can('admin_enrollment_block_access')
@include('admin.includes.delete_button',[
'url' => getAdminPanelUrl().'/enrollments/'. $manualDisabledBundle->id .'/enable-access',
'tooltip' => trans('update.enable-student-access'),
])
@endcan
</td>
</tr>
@endforeach
@endif
</table>
<p class="font-12 text-gray mt-1 mb-0">{{ trans('update.manual_remove_hint') }}</p>
</div>
</div>
</div>
<div class="col-12">
<div class="mt-5">
<h5 class="section-title after-line">{{ trans('panel.purchased') }}</h5>
<div class="table-responsive mt-3">
<table class="table table-striped table-md">
<tr>
<th>{{trans('update.bundle')}}</th>
<th>{{ trans('admin/main.type') }}</th>
<th>{{ trans('admin/main.price') }}</th>
<th>{{ trans('admin/main.instructor') }}</th>
<th class="text-center">{{ trans('panel.purchase_date') }}</th>
<th>{{ trans('admin/main.actions') }}</th>
</tr>
@if(!empty($purchasedBundles))
@foreach($purchasedBundles as $purchasedBundle)
<tr>
<td width="25%">
<a href="{{ !empty($purchasedBundle->bundle) ? $purchasedBundle->bundle->getUrl() : '#1' }}" target="_blank" class="">{{ !empty($purchasedBundle->bundle) ? $purchasedBundle->bundle->title : trans('update.deleted_item') }}</a>
</td>
<td>
@if(!empty($purchasedBundle->bundle))
{{ trans('admin/main.'.$purchasedBundle->bundle->type) }}
@endif
</td>
<td>
@if(!empty($purchasedBundle->bundle))
{{ !empty($purchasedBundle->bundle->price) ? handlePrice($purchasedBundle->bundle->price) : '-' }}
@else
{{ !empty($purchasedBundle->amount) ? handlePrice($purchasedBundle->amount) : '-' }}
@endif
</td>
<td width="25%">
@if(!empty($purchasedBundle->bundle))
<p>{{ $purchasedBundle->bundle->creator->full_name }}</p>
@else
<p>{{ $purchasedBundle->seller->full_name }}</p>
@endif
</td>
<td class="text-center">{{ dateTimeFormat($purchasedBundle->created_at,'j M Y | H:i') }}</td>
<td class="text-right">
@can('admin_enrollment_block_access')
@include('admin.includes.delete_button',[
'url' => getAdminPanelUrl().'/enrollments/'. $purchasedBundle->id .'/block-access',
'tooltip' => trans('update.block_access'),
'btnIcon' => 'fa-times-circle'
])
@endcan
</td>
</tr>
@endforeach
@endif
</table>
<p class="font-12 text-gray mt-1 mb-0">{{ trans('update.purchased_hint') }}</p>
</div>
</div>
</div>
</div>
</div>