관리-도구
편집 파일: c625df82d59e4326495614b76137a4f5.php
<!-- single item --> <?php $reviews = review($course); $thumbnail = $course->thumbnail && fileExists('lms/courses/thumbnails', $course->thumbnail) == true ? asset("storage/lms/courses/thumbnails/{$course->thumbnail}") : asset('lms/frontend/assets/images/420x252.svg'); $translations = $translations ?? parse_translation($course); $categoryTranslations = parse_translation($course->category); $currency = $course?->coursePrice->currency ?? 'USD-$'; $currencySymbol = get_currency_symbol($currency); ?> <div class="col-span-full md:col-span-6 group-data-[card-layout=list]:!col-span-full"> <div class="flex flex-col bg-white rounded-2xl p-5 h-full card-border sm:group-data-[card-layout=list]:flex-row [&.card-border]:border [&.card-border]:border-border [&.card-border]:hover:shadow-md custom-transition group/course"> <!-- COURSE THUMBNAIL --> <div class="relative aspect-video sm:group-data-[card-layout=list]:max-w-52 rounded-xl overflow-hidden shrink-0"> <img data-src="<?php echo e($thumbnail); ?>" alt="Course thumbnail" class="size-full object-cover group-hover/course:scale-110 custom-transition"> <?php if(auth()->guard()->check()): ?> <?php $class = user_wishlist_check($course->id) ? 'active' : ''; ?> <label for="course_<?php echo e($course->id); ?>" class="flex-center absolute top-3 end-3 size-9 rounded-50 bg-white cursor-pointer select-none z-[1] add-wishlist group/wishlist <?php echo e($class); ?>" data-id="<?php echo e($course->id); ?>"> <input type="checkbox" id="course_<?php echo e($course->id); ?>" class="appearance-none flex-center before:font-remix before:content-['\ee0f'] before:leading-none before:text-heading group-[.active]/wishlist:before:text-primary before:text-xl group-[.active]/wishlist:before:content-['\ee0e'] cursor-pointer"> </label> <?php else: ?> <label for="course_<?php echo e($course->id); ?>" class="flex-center absolute top-3 end-3 size-9 rounded-50 bg-white cursor-pointer select-none z-[1]" data-id="<?php echo e($course->id); ?>"> <a href="<?php echo e(route('auth.login')); ?>" id="course_<?php echo e($course->id); ?>" class="appearance-none flex-center before:font-remix before:content-['\ee0f'] before:leading-none before:text-heading before:text-xl checked:before:content-['\ee0e'] cursor-pointer"> </a> </label> <?php endif; ?> <!-- badge --> <?php $__currentLoopData = $course->levels; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $level): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $levelTranslation = parse_translation($level); ?> <span class="badge b-solid badge-secondary-solid rounded-full !text-heading dark:text-white absolute top-4 left-4 rtl:left-auto rtl:right-4 z-10"> <?php echo e($levelTranslation['name'] ?? ($level->name ?? '')); ?></span> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <div class="mt-6 sm:group-data-[card-layout=list]:mt-0 sm:group-data-[card-layout=list]:ml-6 rtl:sm:group-data-[card-layout=list]:ml-0 rtl:sm:group-data-[card-layout=list]:mr-6 grow"> <div class="flex-center-between"> <div class="badge badge-heading-outline b-outline rounded-full shrink-0"> <?php echo e($categoryTranslations['title'] ?? $course?->category?->title); ?> </div> <?php if($course?->courseSetting?->is_free): ?> <div class="text-primary text-xl !leading-none font-bold text-right shrink-0 flex items-center gap-1.5"> <span><?php echo e(translate('Free')); ?></span> </div> <?php else: ?> <div class="text-primary text-xl !leading-none font-bold text-right shrink-0 flex items-center gap-1.5"> <?php if(isset($course?->coursePrice) && $course?->coursePrice?->discount_flag == 1 && $course?->coursePrice?->discount_period != '' && dateCompare($course?->coursePrice?->discount_period) == true): ?> <span><?php echo e($currencySymbol); ?><?php echo e(dotZeroRemove($course?->coursePrice?->discounted_price ?? 0)); ?></span> <span> <del class="text-heading/50 text-[16px] font-semibold"><?php echo e($currencySymbol); ?><?php echo e(dotZeroRemove($course?->coursePrice?->price ?? 0)); ?></del> </span> <?php else: ?> <span><?php echo e($currencySymbol); ?><?php echo e(dotZeroRemove($course?->coursePrice?->price ?? 0)); ?></span> <?php endif; ?> </div> <?php endif; ?> </div> <h6 class="area-title font-bold !text-xl mt-3 group-hover/course:text-primary custom-transition"> <a href="<?php echo e(route('course.detail', $course->slug)); ?>" class="line-clamp-2" aria-label="Course title"> <?php echo e($translations['title'] ?? ($course->title ?? '')); ?></a> </h6> <?php if(!isset($isComing)): ?> <div class="flex items-center gap-2 mt-3"> <div class="flex items-center gap-0.5 text-secondary"> <?php echo show_rating($reviews['average_rating']); ?> </div> <p class="area-description text-sm !leading-none"> (<?php echo e(dotZeroRemove($reviews['average_rating']) ?? 0); ?> <?php echo e(translate('Rating')); ?>) </p> </div> <?php endif; ?> <div class="flex-center-between gap-2 pt-4 mt-6 border-t border-heading/10"> <div class="flex items-center gap-1 area-description text-sm !leading-none shrink-0"> <i class="ri-time-line"></i> <span><?php echo e($course->duration); ?> </span> </div> <div class="flex items-center gap-4 shrink-0"> <div class="flex items-center gap-1 area-description text-sm !leading-none shrink-0"> <i class="ri-book-line"></i> <span><?php echo e($course?->chapters?->count() ?? 0); ?> <?php echo e(translate('Lessons')); ?> </span> </div> <?php if(!isset($isComing)): ?> <div class="flex items-center gap-1 area-description text-sm !leading-none shrink-0"> <i class="ri-group-line"></i> <span> <?php echo e($course?->totalPurchases?->count() ?? 0); ?> <?php echo e(translate('Student')); ?> </span> </div> <?php endif; ?> </div> </div> </div> </div> </div> <?php /**PATH /home/inprosysltd/public_html/edulab.inprosysltd.com/Modules/LMS/resources/views/components//cards/course-list-card-one.blade.php ENDPATH**/ ?>