관리-도구
편집 파일: b6bed226b9597daf4cdde67d20802be4.php
<?php $attributes ??= new \Illuminate\View\ComponentAttributeBag; ?> <?php foreach($attributes->onlyProps(['id' =>"deleteModal" ]) as $__key => $__value) { $$__key = $$__key ?? $__value; } ?> <?php $attributes = $attributes->exceptProps(['id' =>"deleteModal" ]); ?> <?php foreach (array_filter((['id' =>"deleteModal" ]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) { $$__key = $$__key ?? $__value; } ?> <?php $__defined_vars = get_defined_vars(); ?> <?php foreach ($attributes as $__key => $__value) { if (array_key_exists($__key, $__defined_vars)) unset($$__key); } ?> <?php unset($__defined_vars); ?> <div tabindex="-1" role="dialog" id="<?php echo e($id); ?>" <?php echo e($attributes->merge(['class' => 'modal fade'])); ?>> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title"><?php echo e(__('Item Delete Confirmation')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <p><?php echo e(__('Are You sure want to delete this item ?')); ?></p> </div> <div class="modal-footer bg-whitesmoke br"> <form id="deleteForm" action="" method="POST"> <?php echo csrf_field(); ?> <?php echo method_field('DELETE'); ?> <button type="button" class="btn btn-danger" data-dismiss="modal"><?php echo e(__('Close')); ?></button> <button type="submit" class="btn btn-primary"><?php echo e(__('Yes, Delete')); ?></button> </form> </div> </div> </div> </div><?php /**PATH /home/inprosysltd/public_html/skill.inprosysltd.com/resources/views/components/admin/delete-modal.blade.php ENDPATH**/ ?>