<?php $__env->startSection('title', __('locale.menu.Language')); ?>
<?php $__env->startSection('vendor-style'); ?>
<link rel="stylesheet" href="<?php echo e(asset(mix('vendors/css/tables/datatable/dataTables.bootstrap5.min.css'))); ?>">
<link rel="stylesheet" href="<?php echo e(asset(mix('vendors/css/tables/datatable/responsive.bootstrap5.min.css'))); ?>">
<link rel="stylesheet" href="<?php echo e(asset(mix('vendors/css/tables/datatable/buttons.bootstrap5.min.css'))); ?>">
<link rel="stylesheet" href="<?php echo e(asset(mix('vendors/css/extensions/sweetalert2.min.css'))); ?>">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Basic table -->
<section id="datatables-basic">
<div class="mb-3 mt-2">
<?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('new languages')): ?>
<div class="btn-group">
<a href="<?php echo e(route('admin.languages.create')); ?>" class="btn btn-success waves-light waves-effect fw-bold mx-1"> <?php echo e(__('locale.buttons.add_new')); ?> <i data-feather="plus-circle"></i></a>
</div>
<?php endif; ?>
</div>
<div class="row">
<div class="col-12">
<div class="card">
<table class="table datatables-basic">
<thead>
<tr>
<th></th>
<th><?php echo e(__('locale.labels.name')); ?></th>
<th><?php echo e(__('locale.currencies.code')); ?></th>
<th><?php echo e(__('locale.labels.status')); ?></th>
<th><?php echo e(__('locale.labels.actions')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td></td>
<td><?php echo e($lang->name); ?></td>
<td><?php echo e(strtoupper($lang->code)); ?></td>
<td>
<?php if($lang->code != 'en'): ?>
<div class='form-check form-switch form-check-primary'>
<input type="checkbox" class="form-check-input get_status" id="<?php echo e($lang->id); ?>" data-id="<?php echo e($lang->id); ?>" name='status' <?php if($lang->status == true): ?> checked <?php endif; ?>>
<label class="form-check-label" for="<?php echo e($lang->id); ?>">
<span class="switch-icon-left"><i data-feather="check"></i> </span>
<span class="switch-icon-right"><i data-feather="x"></i> </span>
</label>
</div>
<?php else: ?>
<span class="badge bg-success"><?php echo e(__('locale.labels.active')); ?></span>
<?php endif; ?>
</td>
<td>
<a href="<?php echo e(route('admin.languages.upload', $lang->id)); ?>" class='text-info me-1' data-bs-toggle='tooltip' data-bs-placement='top' title="<?php echo e(__('locale.labels.upload')); ?>"> <i data-feather="upload" class="feather-20"></i></a>
<a href="<?php echo e(route('admin.languages.download', $lang->id)); ?>" class='text-success me-1 action-download' data-bs-toggle='tooltip' data-bs-placement='top' title="<?php echo e(__('locale.labels.download')); ?>"> <i data-feather="download" class="feather-20"></i></a>
<?php if($lang->code != 'en'): ?>
<a href="<?php echo e(route('admin.languages.show', $lang->id)); ?>" class='text-primary me-1' data-bs-toggle='tooltip' data-bs-placement='top' title="<?php echo e(__('locale.labels.translate')); ?>"> <i data-feather="external-link" class="feather-20"></i></a>
<span class='action-delete text-danger cursor-pointer' data-id="<?php echo e($lang->id); ?>" data-bs-toggle='tooltip' data-bs-placement='top' title="<?php echo e(__('locale.buttons.delete')); ?>"><i data-feather="trash" class="feather-20"></i></span>
<?php endif; ?>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!--/ Basic table -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('vendor-script'); ?>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/jquery.dataTables.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/dataTables.bootstrap5.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/dataTables.responsive.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/responsive.bootstrap5.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/datatables.buttons.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/tables/datatable/buttons.html5.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/extensions/sweetalert2.all.min.js'))); ?>"></script>
<script src="<?php echo e(asset(mix('vendors/js/extensions/polyfill.min.js'))); ?>"></script>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('page-script'); ?>
<script>
$(document).ready(function () {
"use strict"
let Table = $("table");
//show response message
function showResponseMessage(data) {
if (data.status === 'success') {
toastr['success'](data.message, '<?php echo e(__('locale.labels.success')); ?>!!', {
closeButton: true,
positionClass: 'toast-top-right',
progressBar: true,
newestOnTop: true,
rtl: isRtl
});
dataListView.draw();
} else {
toastr['warning']("<?php echo e(__('locale.exceptions.something_went_wrong')); ?>", '<?php echo e(__('locale.labels.warning')); ?>!', {
closeButton: true,
positionClass: 'toast-top-right',
progressBar: true,
newestOnTop: true,
rtl: isRtl
});
}
}
let dataListView = $('.datatables-basic').DataTable({
"processing": true,
"columns": [
{"data": "id", orderable: false, searchable: false},
{"data": "name"},
{"data": "code"},
{"data": "status"},
{"data": "action", orderable: false, searchable: false}
],
columnDefs: [
{
// For Responsive
className: 'control',
orderable: false,
responsivePriority: 2,
targets: 0
},
],
dom: '<"d-flex justify-content-between align-items-center mx-0 row"<"col-sm-12 col-md-6"l><"col-sm-12 col-md-6"f>>t<"d-flex justify-content-between mx-0 row"<"col-sm-12 col-md-6"i><"col-sm-12 col-md-6"p>>',
language: {
paginate: {
// remove previous & next text from pagination
previous: ' ',
next: ' '
},
sLengthMenu: "_MENU_",
sZeroRecords: "<?php echo e(__('locale.datatables.no_results')); ?>",
sSearch: "<?php echo e(__('locale.datatables.search')); ?>",
sProcessing: "<?php echo e(__('locale.datatables.processing')); ?>",
sInfo: "<?php echo e(__('locale.datatables.showing_entries', ['start' => '_START_', 'end' => '_END_', 'total' => '_TOTAL_'])); ?>"
},
responsive: {
details: {
display: $.fn.dataTable.Responsive.display.modal({
header: function (row) {
let data = row.data();
return 'Details of ' + data['name'];
}
}),
type: 'column',
renderer: function (api, rowIdx, columns) {
let data = $.map(columns, function (col) {
return col.title !== '' // ? Do not show row in modal popup if title is blank (for check box)
? '<tr data-dt-row="' +
col.rowIdx +
'" data-dt-column="' +
col.columnIndex +
'">' +
'<td>' +
col.title +
':' +
'</td> ' +
'<td>' +
col.data +
'</td>' +
'</tr>'
: '';
}).join('');
return data ? $('<table class="table"/>').append('<tbody>' + data + '</tbody>') : false;
}
}
},
aLengthMenu: [[10, 20, 50, 100], [10, 20, 50, 100]],
order: [[0, "desc"]],
displayLength: 10,
});
//change status
Table.delegate(".get_status", "click", function () {
let language_id = $(this).data('id');
$.ajax({
url: "<?php echo e(url(config('app.admin_path').'/languages')); ?>" + '/' + language_id + '/active',
type: "POST",
data: {
_token: "<?php echo e(csrf_token()); ?>"
},
success: function (data) {
showResponseMessage(data);
}
});
});
// On Delete
Table.delegate(".action-delete", "click", function (e) {
e.stopPropagation();
let id = $(this).data('id');
Swal.fire({
title: "<?php echo e(__('locale.labels.are_you_sure')); ?>",
text: "<?php echo e(__('locale.labels.able_to_revert')); ?>",
icon: 'warning',
showCancelButton: true,
confirmButtonText: "<?php echo e(__('locale.labels.delete_it')); ?>",
customClass: {
confirmButton: 'btn btn-primary',
cancelButton: 'btn btn-outline-danger ms-1'
},
buttonsStyling: false,
}).then(function (result) {
if (result.value) {
$.ajax({
url: "<?php echo e(url(config('app.admin_path').'/languages')); ?>" + '/' + id,
type: "POST",
data: {
_method: 'DELETE',
_token: "<?php echo e(csrf_token()); ?>"
},
success: function (data) {
showResponseMessage(data);
},
error: function (reject) {
if (reject.status === 422) {
let errors = reject.responseJSON.errors;
$.each(errors, function (key, value) {
toastr['warning'](value[0], "<?php echo e(__('locale.labels.attention')); ?>", {
closeButton: true,
positionClass: 'toast-top-right',
progressBar: true,
newestOnTop: true,
rtl: isRtl
});
});
} else {
toastr['warning'](reject.responseJSON.message, "<?php echo e(__('locale.labels.attention')); ?>", {
positionClass: 'toast-top-right',
containerId: 'toast-top-right',
progressBar: true,
closeButton: true,
newestOnTop: true
});
}
}
})
}
})
});
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts/contentLayoutMaster', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bouloter/sms/resources/views/admin/settings/Language/index.blade.php ENDPATH**/ ?>