관리-도구
편집 파일: af52a1ffe4c2081c5ee7c5f84d3d79ad.php
<section class="categories-area section-py-120 pt-0"> <div class="container"> <div class="row justify-content-center"> <div class="col-xl-5 col-lg-7"> <div class="section__title text-center mb-40"> <span class="sub-title"><?php echo e(__('Trending Categories')); ?></span> <h2 class="title"><?php echo e(__('Top Category We Have')); ?></h2> <p class="desc"><?php echo e(__('Check out the most demanding categories right now')); ?></p> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="categories__wrap"> <div class="swiper categories-active"> <div class="swiper-wrapper"> <?php $__currentLoopData = $trendingCategories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="swiper-slide"> <div class="categories__item"> <a href="<?php echo e(route('courses', ['main_category' => $category->slug])); ?>"> <div class="icon"> <img src="<?php echo e(asset($category->icon)); ?>" alt=""> </div> <span class="name"><?php echo e($category?->name); ?></span> <span class="courses">(<?php echo e($category->subCategories->sum('courses_count')); ?>)</span> </a> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> <div class="categories__nav"> <button class="categories-button-prev"> <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15 7L1 7M1 7L7 1M1 7L7 13" stroke="#161439" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg> </button> <button class="categories-button-next"> <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1 7L15 7M15 7L9 1M15 7L9 13" stroke="#161439" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg> </button> </div> </div> </div> </div> </div> </section> <?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/frontend/home/university/sections/category-area.blade.php ENDPATH**/ ?>