관리-도구
편집 파일: 2d3da1e33efc083249c1b7d5424f3dfc.php
<?php if (isset($component)) { $__componentOriginald7f77a02f879fd4954ea3c39c4e952cb = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb = $attributes; } ?> <?php $component = Modules\LMS\View\Components\Dashboard\Layout::resolve([] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> <?php $component->withName('dashboard-layout'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?> <?php $attributes = $attributes->except(\Modules\LMS\View\Components\Dashboard\Layout::ignoredParameterNames()); ?> <?php endif; ?> <?php $component->withAttributes([]); ?> <?php $__env->slot('title', null, []); ?> <?php echo e(isset($category) ? translate('Edit') : translate('Create')); ?> <?php echo e(translate('Category')); ?> <?php $__env->endSlot(); ?> <!-- BREADCRUMB --> <?php if (isset($component)) { $__componentOriginalcf27f2c2c873893339708d5fdeeb6984 = $component; } ?> <?php if (isset($attributes)) { $__attributesOriginalcf27f2c2c873893339708d5fdeeb6984 = $attributes; } ?> <?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => '7ee9c4f86007ba41bc79bbfab1cd8a68::admin.breadcrumb','data' => ['backUrl' => ''.e(route('category.index')).'','title' => ''.e(isset($category) ? 'View' : 'Create').'','pageTo' => 'Category']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> <?php $component->withName('portal::admin.breadcrumb'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?> <?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?> <?php endif; ?> <?php $component->withAttributes(['back-url' => ''.e(route('category.index')).'','title' => ''.e(isset($category) ? 'View' : 'Create').'','page-to' => 'Category']); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginalcf27f2c2c873893339708d5fdeeb6984)): ?> <?php $attributes = $__attributesOriginalcf27f2c2c873893339708d5fdeeb6984; ?> <?php unset($__attributesOriginalcf27f2c2c873893339708d5fdeeb6984); ?> <?php endif; ?> <?php if (isset($__componentOriginalcf27f2c2c873893339708d5fdeeb6984)): ?> <?php $component = $__componentOriginalcf27f2c2c873893339708d5fdeeb6984; ?> <?php unset($__componentOriginalcf27f2c2c873893339708d5fdeeb6984); ?> <?php endif; ?> <div class="grid grid-cols-12 gap-x-4"> <div class="col-span-full lg:col-span-6 card"> <div class="leading-none"> <label for="title" class="form-label"> <?php echo e(translate('Title')); ?> <span class="text-danger" title="<?php echo e(translate('This field is required')); ?>"><b>*</b></span> </label> <input type="text" id="title" name="title" readonly value="<?php echo e($category->title ?? ''); ?>" class="form-input"> </div> <div class="leading-none mt-6"> <label for="parent_id" class="form-label"><?php echo e(translate('Parent')); ?></label> <select data-select id="parent_id" name="parent_id" readonly class="singleSelect"> <option selected disabled data-display="<?php echo e(translate('Select none to create a parent category')); ?>"> <?php echo e(translate('Select none to create a parent category')); ?> </option> <?php $__currentLoopData = get_all_category(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $pcat): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($pcat->id); ?>" <?php echo e(isset($category) && $pcat->id == $category->parent_id ? 'selected' : ''); ?>> <?php echo e($pcat->title); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="leading-none mt-6"> <label for="icon" class="form-label"><?php echo e(translate('Icon picker')); ?> </label> <select data-select id="icon" name="icon_id" class="singleSelect" readonly> <option selected disabled data-display="<?php echo e(translate('Selected Icon')); ?>"> <?php echo e(translate('Selected Icon')); ?> </option> <?php $__currentLoopData = get_all_icon(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $icon): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($icon->id); ?>" <?php echo e(isset($category) && $icon->id == $category->icon_id ? 'selected' : ''); ?>> <?php echo e($icon->icon); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="leading-none mt-6"> <label for="order" class="form-label"> <?php echo e(translate('Category Position')); ?> </label> <input type="number" id="order" name="order" readonly class="form-input" placeholder="<?php echo e(translate('Enter Position')); ?>" value="<?php echo e($category->order ?? ''); ?>"> </div> <div class="leading-none mt-6"> <label for="meta_title" class="form-label"> <?php echo e(translate('Meta Title')); ?> </label> <input type="text" id="meta_title" name="meta_title" readonly value="<?php echo e($category->meta_title ?? ''); ?>" class="form-input" placeholder="<?php echo e(translate('Enter Meta Title')); ?>"> </div> </div> <div class="col-span-full lg:col-span-6 card"> <label class="card-title"> <?php echo e(translate('Category Image')); ?></label> <div class="preview-zone dropzone-preview"> <div class="box box-solid"> <div class="box-body flex items-center gap-2 flex-wrap"> <?php if(isset($category) && fileExists($folder = 'lms/categories', $fileName = $category->image) == true && $category->image !== ''): ?> <div class="img-thumb-wrapper"> <img class="img-thumb" src="<?php echo e(asset('storage/lms/categories/' . $category->image)); ?>" alt=""> </div> <?php endif; ?> </div> </div> </div> </div> <div class="col-span-full card"> <label for="meta_description" class="card-title"> <?php echo e(translate('Meta Description')); ?> </label> <div class="card-description text-gray-500 dark:text-dark-text-two mt-4"> <?php echo clean($category->meta_description ?? ''); ?> </div> </div> </div> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb)): ?> <?php $attributes = $__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb; ?> <?php unset($__attributesOriginald7f77a02f879fd4954ea3c39c4e952cb); ?> <?php endif; ?> <?php if (isset($__componentOriginald7f77a02f879fd4954ea3c39c4e952cb)): ?> <?php $component = $__componentOriginald7f77a02f879fd4954ea3c39c4e952cb; ?> <?php unset($__componentOriginald7f77a02f879fd4954ea3c39c4e952cb); ?> <?php endif; ?> <?php /**PATH D:\www\edulab\Modules\LMS\resources\views\portals\admin\currency\view.blade.php ENDPATH**/ ?>