관리-도구
편집 파일: 90cb9245f2507bf559c624e16249d615.php
<?php $backendSetting = get_theme_option(key: 'backend_general') ?? null; $currency = $backendSetting['currency'] ?? 'USD-$'; $currencySymbol = get_currency_symbol($currency); ?> <?php if (isset($component)) { $__componentOriginald7f77a02f879fd4954ea3c39c4e952cb = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb = $attributes; } ?> <?php $component = Modules\LMS\View\Components\Dashboard\Layout::resolve([] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> <?php $component->withName('dashboard-layout'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?> <?php $attributes = $attributes->except(\Modules\LMS\View\Components\Dashboard\Layout::ignoredParameterNames()); ?> <?php endif; ?> <?php $component->withAttributes([]); ?> <?php $__env->slot('title', null, []); ?> <?php echo e(translate('My Wishlist')); ?> <?php $__env->endSlot(); ?> <!-- BREADCRUMB --> <?php if (isset($component)) { $__componentOriginalcf27f2c2c873893339708d5fdeeb6984 = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginalcf27f2c2c873893339708d5fdeeb6984 = $attributes; } ?> <?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => '7ee9c4f86007ba41bc79bbfab1cd8a68::admin.breadcrumb','data' => ['title' => 'My Wishlist','pageTo' => 'wishlist']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> <?php $component->withName('portal::admin.breadcrumb'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?> <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?> <?php endif; ?> <?php $component->withAttributes(['title' => 'My Wishlist','page-to' => 'wishlist']); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginalcf27f2c2c873893339708d5fdeeb6984)): ?> <?php $attributes = $__attributesOriginalcf27f2c2c873893339708d5fdeeb6984; ?> <?php unset($__attributesOriginalcf27f2c2c873893339708d5fdeeb6984); ?> <?php endif; ?> <?php if (isset($__componentOriginalcf27f2c2c873893339708d5fdeeb6984)): ?> <?php $component = $__componentOriginalcf27f2c2c873893339708d5fdeeb6984; ?> <?php unset($__componentOriginalcf27f2c2c873893339708d5fdeeb6984); ?> <?php endif; ?> <!-- Start Main Content --> <div class="overflow-hidden"> <div class="overflow-x-auto scrollbar-table"> <?php if($activePlan): ?> <div class="grid grid-cols-12 gap-4 h-full"> <div class="col-span-full md:col-span-4 card p-5 mb-0"> <div class="size-11 flex-center bg-[#F7F3FF] dark:bg-dark-icon rounded-10 dk-theme-card-square mb-4"> <img src="http://127.0.0.1:8000/lms/assets/images/icons/course-overview/progress.svg" alt="icon" class="dark:brightness-[5]"> </div> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($activePlan->title ?? ''); ?> </p> <div class="counter-value text-primary-500 text-[32px] font-semibold leading-none"> <strong class="font-30 text-dark-blue font-weight-bold mt-5"> <?php if($activePlan->infinite_use): ?> <?php echo e(translate('Unlimited')); ?> <?php else: ?> <?php echo e($activePlan->usable_count - $activePlan->used_count); ?> <?php endif; ?> </strong> <div class="counter-value text-primary-500 text-[32px] font-semibold leading-none"> <?php echo e(translate('Remain Enroll')); ?> </div> </div> </div> <div class="col-span-full md:col-span-4 card p-5 mb-0"> <div class="size-11 flex-center bg-[#F7F3FF] dark:bg-dark-icon rounded-10 dk-theme-card-square mb-4"> <img src="http://127.0.0.1:8000/lms/assets/images/icons/course-overview/progress.svg" alt="icon" class="dark:brightness-[5]"> </div> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($activePlan->days - $dayOfUse); ?> </p> <div class="counter-value text-primary-500 text-[32px] font-semibold leading-none"> <?php echo e(translate('Remain Days')); ?> </div> </div> </div> <?php else: ?> <p>One</p> <p>One</p> <?php endif; ?> <div class="grid grid-cols-12 gap-4 h-full mt-10"> <?php $__currentLoopData = $subscribes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $subscribe): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $subscribeTranslations = parse_translation($subscribe); $iconImg = $subscribe->icon_img && fileExists('lms/subscribes', $subscribe->icon_img) ? asset("storage/lms/subscribes/{$subscribe->icon_img}") : asset('lms/frontend/assets/images/450x300.svg'); ?> <div class="col-span-full md:col-span-4 card p-5 mb-0"> <div class="size-11 flex-center bg-[#F7F3FF] dark:bg-dark-icon rounded-10 dk-theme-card-square mb-4"> <?php if($subscribe->is_popular): ?> <span>Popular</span> <?php endif; ?> <img src="<?php echo e($iconImg); ?>" alt="icon" class="dark:brightness-[5]"> </div> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($subscribeTranslations['title'] ?? $subscribe->title); ?> </p> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($subscribeTranslations['description'] ?? $subscribe->description); ?> </p> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($currencySymbol); ?><?php echo e($subscribe->price); ?> </p> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($subscribe->usable_count); ?> <?php echo e(translate('days of subscription')); ?> </p> <p class="text-gray-500 dark:text-dark-text font-medium leading-none mb-2"> <?php echo e($subscribe->days); ?> <?php echo e(translate('Subscribes')); ?> </p> <div class="mt-3"> <form action="<?php echo e(route('subscription.payment')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="id" value="<?php echo e($subscribe->id); ?>"> <button type="submit" class="btn b-solid btn-primary-solid !rounded-full font-medium text-[16px] md:text-[18px] mt-2"> Purchase </button> </form> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb)): ?> <?php $attributes = $__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb; ?> <?php unset($__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb); ?> <?php endif; ?> <?php if (isset($__componentOriginald7f77a02f879fd4954ea3c39c4e952cb)): ?> <?php $component = $__componentOriginald7f77a02f879fd4954ea3c39c4e952cb; ?> <?php unset($__componentOriginald7f77a02f879fd4954ea3c39c4e952cb); ?> <?php endif; ?> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\portals\student\subscription\index.blade.php ENDPATH**/ ?>