File manager - Edit - /var/www/payraty/lms_main/storage/framework/views/0fd3145471c9fc2a21a5a4e0c485cf2b.php
Back
<?php $__env->startPush('title', get_phrase('Multi language setting')); ?> <?php $__env->startPush('meta'); ?><?php $__env->stopPush(); ?> <?php $__env->startPush('css'); ?><?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <div class="ol-card radius-8px"> <div class="ol-card-body my-3 py-4 px-20px"> <div class="d-flex align-items-center justify-content-between gap-3 flex-wrap flex-md-nowrap"> <h4 class="title fs-16px"> <i class="fi-rr-settings-sliders me-2"></i> <?php echo e(get_phrase('Manage Language')); ?> </h4> </div> </div> </div> <div class="ol-card p-4"> <p class="title text-14px mb-3"><?php echo e(get_phrase('Manage Language')); ?></p> <div class="ol-card-body"> <ul class="nav nav-tabs eNav-Tabs-custom eTab" id="myTab" role="tablist"> <li class="nav-item" role="presentation"> <button class="nav-link active" id="cHome-tab" data-bs-toggle="tab" data-bs-target="#cHome" type="button" role="tab" aria-controls="cHome" aria-selected="true"> <?php echo e(get_phrase('Language list')); ?> <span></span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link" id="cProfile-tab" data-bs-toggle="tab" data-bs-target="#cProfile" type="button" role="tab" aria-controls="cProfile" aria-selected="false"> <?php echo e(get_phrase('Add Language')); ?> <span></span> </button> </li> <li class="nav-item" role="presentation"> <button class="nav-link" id="cMessage-tab" data-bs-toggle="tab" data-bs-target="#cMessage" type="button" role="tab" aria-controls="cMessage" aria-selected="false"> <?php echo e(get_phrase('Import Language')); ?> <span></span> </button> </li> </ul> <div class="tab-content eNav-Tabs-content" id="myTabContent"> <div class="tab-pane fade show active" id="cHome" role="tabpanel" aria-labelledby="cHome-tab"> <!----TABLE LISTING STARTS--> <div class="tab-pane show active" id="list"> <div class="table-responsive"> <table class="table mt-3"> <thead> <tr> <th scope="col"><?php echo e(get_phrase('Language')); ?></th> <th scope="col"><?php echo e(get_phrase('Direction')); ?></th> <th scope="col"><?php echo e(get_phrase('Option')); ?></th> </tr> </thead> <tbody> <?php $languages = App\Models\Language::get(); ?> <?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $language): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="text-capitalize"><?php echo e($language->name); ?></td> <td> <div class="form-group"> <form action="#"> <input onchange="update_language_dir('<?php echo e($language->id); ?>', 'ltr')" name="direction" id="direction_ltr<?php echo e($language->id); ?>" type="radio" value="ltr" <?php if($language->direction == 'ltr'): ?> checked <?php endif; ?>> <label for="direction_ltr<?php echo e($language->id); ?>"><?php echo e(get_phrase('LTR')); ?></label> <input onchange="update_language_dir('<?php echo e($language->id); ?>', 'rtl')" name="direction" id="direction_rtl<?php echo e($language->id); ?>" type="radio" value="rtl" <?php if($language->direction == 'rtl'): ?> checked <?php endif; ?>> <label for="direction_rtl<?php echo e($language->id); ?>"><?php echo e(get_phrase('RTL')); ?></label> </form> </div> </td> <td class=""> <a href="<?php echo e(route('admin.language.phrase.edit', ['lan_id' => $language->id])); ?>" class="btn btn-light-white"><?php echo e(get_phrase('Edit phrase')); ?></a> <?php if($language->name == 'english' || $language->name == 'English'): ?> <?php else: ?> <a href="javascript:;" onclick="confirmModal('<?php echo e(route('admin.language.delete', ['id' => $language->id])); ?>')" class="btn btn-light-white"><?php echo e(get_phrase('Delete language')); ?></a> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> <!----TABLE LISTING ENDS---> </div> <div class="tab-pane fade" id="cProfile" role="tabpanel" aria-labelledby="cProfile-tab"> <!----ADD NEW LANGUAGE----> <div class="tab-pane" id="add_lang"> <div class="row m-2"> <div class="col-md-8"> <form action="<?php echo e(route('admin.language.store')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="fpb7 mb-2"> <label for="language" class="form-label ol-form-label"><?php echo e(get_phrase('Add new language')); ?></label> <input type="text" class="form-control ol-form-control" id="language" name="language" placeholder="<?php echo e(get_phrase('No special character or space is allowed. Valid examples: French, Spanish, Bengali etc')); ?>"> </div> <div class="form-group"> <button type="submit" class="btn ol-btn-primary"> <?php echo e(get_phrase('Save')); ?></button> </div> </form> </div> </div> </div> <!----LANGUAGE ADDING FORM ENDS--> </div> <div class="tab-pane fade" id="cMessage" role="tabpanel" aria-labelledby="cMessage-tab"> <!----ADD NEW LANGUAGE----> <div class="tab-pane p-3" id="import_language"> <div class="row"> <form action="<?php echo e(route('admin.language.import')); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="col-md-8 fpb-7 mb-2"> <label for="formFile" class="form-label ol-form-label"><?php echo e(get_phrase('Import your language files from here. (Ex: english.json)')); ?></label> <input class="form-control ol-form-control" type="file" id="formFile" name="language_file" id="language_files" accept=".json" required> </div> <div class="form-group"> <button type="submit" class="btn ol-btn-primary"> <?php echo e(get_phrase('Import')); ?></button> </div> </form> </div> </div> <!----LANGUAGE ADDING FORM ENDS--> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('js'); ?> <script type="text/javascript"> "use strict"; function updatePhrase(key, key_main) { $('#btn-' + key).text('...'); var updatedValue = $('#phrase-' + key).val(); var currentEditingLanguage = '<?php echo isset($current_editing_language) ? $current_editing_language : ''; ?>'; $.ajax({ type: "POST", url: "", data: { updatedValue: updatedValue, currentEditingLanguage: currentEditingLanguage, key: key_main }, success: function(response) { $('#btn-' + key).html('<i class = "mdi mdi-check-circle"></i>'); success('<?php echo get_phrase('phrase_updated'); ?>'); } }); } function update_language_dir(language_id, dir) { $.ajax({ type: 'post', url: '<?php echo e(route('admin.language.direction.update')); ?>', data: { language_id: language_id, direction: dir }, headers: { 'X-CSRF-TOKEN': '<?php echo e(csrf_token()); ?>' }, success: function(response) { success('<?php echo e(get_phrase('Direction has been updated')); ?>'); } }); } </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/payraty/lms_main/resources/views/admin/setting/language_setting.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings