관리-도구
편집 파일: a6fd0417011128e2972c02f43c9aace4.php
<?php if(!empty($questionScore) && $questionScore['status'] == 1): ?> <!-- STATUS --> <div class="aleart a-outline aleart-success-outline mt-4"> <div class="flex items-center gap-2.5"> <i class="ri-checkbox-circle-line"></i> <span class="font-bold"><?php echo e(translate('Correct')); ?>.</span> </div> </div> <?php else: ?> <div class="aleart a-outline aleart-danger-outline !block mt-4"> <div class="flex items-center gap-2.5"> <i class="ri-close-circle-line"></i> <span class="font-bold"> <?php echo e(translate('Incorrect')); ?> .</span> <?php echo e(translate('Correct answer is')); ?>... </div> <ul class="mt-2 list-decimal list-inside [&>:not(:first-child)]:mt-1.5"> <?php $__currentLoopData = $answers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $answer): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if(!empty($answer)): ?> <li> <?php echo e($answer); ?> </li> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php endif; ?> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\components\exam\quiz\result-show.blade.php ENDPATH**/ ?>