관리-도구
편집 파일: c5765b118f00a13256ef56d2a31ca257.php
<?php if(count($subCategories) > 0): ?> <div class="courses-widget mb-4 pb-1"> <h4 class="widget-title"><?php echo e(__('Sub Categories')); ?></h4> <div class="courses-cat-list"> <ul class="list-wrap"> <?php $__currentLoopData = $subCategories->sortBy('translation.name'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <div class="form-check"> <input <?php if(in_array($category->id, $categoriesIds)): echo 'checked'; endif; ?> class="form-check-input category-checkbox" type="checkbox" value="<?php echo e($category->id); ?>" id="cat_<?php echo e($category->id); ?>"> <label class="form-check-label" for="cat_<?php echo e($category->id); ?>"><?php echo e($category->translation->name); ?></label> </div> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <div class="show-more"> </div> </div> </div> <?php endif; ?><?php /**PATH /home/inprosys/public_html/skill.inprosys.in/resources/views/frontend/partials/course-sidebar-item.blade.php ENDPATH**/ ?>