File manager - Edit - /home/linknsbh/linkat.online/storage/framework/views/184ca676abda1e164d051f0801a5f1aed7c56d27.php
Back
<?php $selLang = \App\Models\Language::where([ ['code', \Illuminate\Support\Facades\Session::get('currentLangCode')], ])->first(); $langs = \App\Models\User\Language::where('user_id', Auth::guard('web')->user()->id)->get(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='language'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Shipping_Charges')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user-dashboard') . '?language=' . request('language')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Shop_Management')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Shipping_Charges')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-4"> <div class="card-title d-inline-block"> <?php echo e(__('Shipping_Charges')); ?></div> </div> <div class="col-lg-3"> <?php if ($__env->exists('user.partials.languages')) echo $__env->make('user.partials.languages', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <div class="col-lg-4 offset-lg-1 mt-2 mt-lg-0"> <a href="#" class="btn btn-primary float-right btn-sm" data-toggle="modal" data-target="#createModal"><i class="fas fa-plus"></i> <?php echo e(__('Add_New')); ?></a> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($shippings) == 0): ?> <h3 class="text-center"> <?php echo e(__('No_Shipping_Charge_Found')); ?></h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3"> <thead> <tr> <th scope="col"><?php echo e(__('Title')); ?></th> <th scope="col"><?php echo e(__('Text')); ?></th> <th scope="col"><?php echo e(__('Charge')); ?></th> <th scope="col"><?php echo e(__('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $shippings; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $shipping): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <?php echo e($shipping->title); ?> </td> <td> <?php echo e($shipping->text); ?> </td> <td> <?php echo e($userBs->base_currency_symbol_position == 'left' ? $userBs->base_currency_symbol : ''); ?><?php echo e($shipping->charge); ?><?php echo e($userBs->base_currency_symbol_position == 'right' ? $userBs->base_currency_symbol : ''); ?> </td> <td> <a class="btn btn-secondary btn-sm editbtn" href="<?php echo e(route('user.shipping.edit', $shipping->id) . '?language=' . request()->input('language')); ?>"> <span class="btn-label"> <i class="fas fa-edit"></i> </span> <?php echo e(__('Edit')); ?> </a> <form class="deleteform d-inline-block" action="<?php echo e(route('user.shipping.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="shipping_id" value="<?php echo e($shipping->id); ?>"> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <span class="btn-label"> <i class="fas fa-trash"></i> </span> <?php echo e(__('Delete')); ?> </button> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> <div class="card-footer"> <div class="row"> <div class="d-inline-block mx-auto"> <?php echo e($shippings->appends(['language' => request()->input('language')])->links()); ?> </div> </div> </div> </div> </div> </div> <!-- Create Service Category Modal --> <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(__('Add_Shipping_Charge')); ?></h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="ajaxForm" class="modal-form" action="<?php echo e(route('user.shipping.store')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="form-group"> <label for=""><?php echo e(__('Language')); ?> **</label> <select id="language" name="user_language_id" class="form-control"> <option value="" selected disabled><?php echo e(__('Select_a_language')); ?></option> <?php $__currentLoopData = $langs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($lang->id); ?>"><?php echo e($lang->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> <p id="erruser_language_id" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Title')); ?> **</label> <input type="text" class="form-control" name="title" value="" placeholder="<?php echo e(__('Enter_title')); ?>"> <p id="errtitle" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Sort_Text')); ?> **</label> <input type="text" class="form-control" name="text" value="" placeholder="<?php echo e(__('Enter_text')); ?>"> <p id="errtext" class="mb-0 text-danger em"></p> </div> <div class="form-group"> <label for=""><?php echo e(__('Charge')); ?> (<?php echo e($userBs->base_currency_symbol); ?>) **</label> <input type="text" class="form-control" name="charge" value="" placeholder="<?php echo e(__('Enter_charge')); ?>"> <p id="errcharge" class="mb-0 text-danger em"></p> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo e(__('Close')); ?> </button> <button id="submitBtn" type="button" class="btn btn-primary"><?php echo e(__('Submit')); ?> </button> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script> $(document).ready(function() { // make input fields RTL $("select[name='language_id']").on('change', function() { $(".request-loader").addClass("show"); let url = "<?php echo e(url('/')); ?>/user/rtlcheck/" + $(this).val(); console.log(url); $.get(url, function(data) { $(".request-loader").removeClass("show"); if (data == 1) { $("form.modal-form input").each(function() { if (!$(this).hasClass('ltr')) { $(this).addClass('rtl'); } }); $("form.modal-form select").each(function() { if (!$(this).hasClass('ltr')) { $(this).addClass('rtl'); } }); $("form.modal-form textarea").each(function() { if (!$(this).hasClass('ltr')) { $(this).addClass('rtl'); } }); $("form.modal-form .nicEdit-main").each(function() { $(this).addClass('rtl text-right'); }); } else { $("form.modal-form input, form.modal-form select, form.modal-form textarea") .removeClass('rtl'); $("form.modal-form .nicEdit-main").removeClass('rtl text-right'); } }) }); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/linknsbh/linkat.online/resources/views/user/item/shop_setting/index.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.73 |
proxy
|
phpinfo
|
Settings