관리-도구
편집 파일: 139eb3df397c19450e9e7f47972dda08.php
<!-- Start Course Topic Modal --> <div id="addCourseTopic" tabindex="-1" class="fixed inset-0 z-modal flex-center w-full md:inset-0 h-[calc(100%-1rem)] max-h-full hidden"> <div class="p-4 w-full max-w-2xl max-h-full"> <div class="relative bg-white rounded-lg shadow"> <button type="button" data-modal-hide="addCourseTopic" aria-label="Delete course topic modal" class="absolute top-3 end-2.5 hover:bg-gray-200 rounded-lg size-8 flex-center"> <i class="ri-close-fill text-gray-500 text-xl leading-none"></i> </button> <div class="max-h-[80vh] overflow-auto"> <div class="overflow-hidden"> <div class="p-4 md:p-5"> <div class="pb-4 border-b border-gray-200"> <h6 class="leading-none text-lg font-semibold text-heading" id="topic-header-modal"> <?php echo e(translate('Add New Topic')); ?> </h6> </div> <div> <div id="topicTypeList"> <labe class="form-label"><?php echo e(translate('Topic type')); ?></labe> <select class="singleSelect topic-type-list" name="topic_type" required> <option selected disabled><?php echo e(translate('Select Type')); ?></option> <?php $__currentLoopData = get_all_topic_type(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $topicType): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($topicType->slug); ?>"><?php echo e($topicType->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <span class="text-danger error-text topic_type_err"></span> </div> <div class="flex-center size-full bg-white sniper-loader"> <div class="size-10 rounded-50 animate-spin border-4 border-dashed border-primary-500 border-t-transparent"> </div> </div> <div class="form-field-area"> </div> </div> </div> </div> </div> </div> </div> </div> <!-- End Course Topic Modal --> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\components\course\curriculum\topic-form.blade.php ENDPATH**/ ?>