관리-도구
편집 파일: 8c089b908dd9181cdb86934c70a3eeca.php
<?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $translations = parse_translation($category); ?> <!-- CATEGORY CARD --> <div class="col-span-full sm:col-span-6 lg:col-span-3"> <div class="bg-primary-50 rounded-[20px] px-10 py-12 flex-center flex-col border border-transparent hover:border-primary hover:shadow custom-transition h-full group/category"> <div class="flex-center size-12"> <?php if(fileExists('lms/categories', $category->image) == true && $category->image != ''): ?> <img data-src="<?php echo e(asset("storage/lms/categories/{$category->image}")); ?>" alt="Course category icon" class="size-full object-cover rounded-lg"> <?php elseif($category->icon_id): ?> <div class="icon"> <?php echo $category?->icon?->icon ?? ''; ?></div> <?php else: ?> <svg xmlns="http://www.w3.org/2000/svg" width="52" height="51" viewBox="0 0 52 51" fill="none"> <path d="M2 12.8684H50M2 38.1316H50M15.8947 12.8684V2.76316M36.1053 12.8684V2.76316M15.8947 48.2368V38.1316M36.1053 48.2368V38.1316M2 25.5C2 14.1872 2 8.52821 5.51411 5.01411C9.02821 1.5 14.6846 1.5 26 1.5C37.3128 1.5 42.9718 1.5 46.4859 5.01411C50 8.52821 50 14.1846 50 25.5C50 36.8128 50 42.4718 46.4859 45.9859C42.9718 49.5 37.3154 49.5 26 49.5C14.6872 49.5 9.02821 49.5 5.51411 45.9859C2 42.4718 2 36.8154 2 25.5Z" stroke="#111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" /> <path d="M23 19.5L33 26L23 32.5V19.5Z" stroke="#111827" stroke-width="3" stroke-linejoin="round" /> </svg> <?php endif; ?> </div> <h6 class="area-title text-[20px] text-center font-semibold mt-12 group-hover/category:text-primary custom-transition"> <?php echo e(str_limit( $translations['title'] ?? $category->title, 20)); ?></h6> <p class="area-description mt-2 font-normal text-center"> <?php echo e($category->courses_count ? $category->courses_count . '+ Course' : $category->courses->count() ?? 0); ?> <?php echo e(translate('Available')); ?> </p> <a href="<?php echo e(route('course.list', ['categories' => $category->id])); ?>" class="btn text-heading dark:text-white group-hover/category:text-primary font-bold custom-transition mt-12" aria-label="View category course"> <?php echo e(translate('View Category')); ?> <span class="hidden md:block"> <i class="ri-arrow-right-up-line text-[20px] rtl:before:content-['\ea66']"></i> </span> </a> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\components\cards\category-card-one.blade.php ENDPATH**/ ?>