%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/resources/views/currency-settings/ |
Upload File : |
@extends('layouts.app')
@section('content')
<!-- SETTINGS START -->
<div class="w-100 d-flex ">
@include('sections.setting-sidebar')
<x-setting-card>
<x-slot name="alert">
<div class="row">
<div class="col-md-12">
<x-alert type="info" icon="info-circle">
@lang('messages.exchangeRateNote')
</x-alert>
</div>
</div>
</x-slot>
<x-slot name="buttons">
<div class="row">
<div class="col-md-12 mb-3">
<x-forms.button-primary icon="plus" id="addNewCurrency">
@lang('modules.currencySettings.addNewCurrency')
</x-forms.button-primary>
<x-forms.button-secondary icon="key" id="addCurrencyExchangeKey">
@lang('modules.accountSettings.currencyConverterKey')
</x-forms.button-secondary>
</div>
</div>
</x-slot>
<x-slot name="header">
<div class="s-b-n-header" id="tabs">
<h2 class="mb-0 p-20 f-21 font-weight-normal text-capitalize border-bottom-grey">
@lang('modules.accountSettings.currencySetting')</h2>
</div>
</x-slot>
{{-- include tabs here --}}
@include($view)
</x-setting-card>
</div>
<!-- SETTINGS END -->
@endsection
@push('scripts')
<script>
/* manage menu active class */
$('.nav-item').removeClass('active');
const activeTab = "{{ $activeTab }}";
$('.' + activeTab).addClass('active');
$("body").on("click", "#editSettings .nav a", function (event) {
event.preventDefault();
$('.nav-item').removeClass('active');
$(this).addClass('active');
const requestUrl = this.href;
$.easyAjax({
url: requestUrl,
blockUI: true,
container: "#nav-tabContent",
historyPush: true,
success: function (response) {
if (response.status == "success") {
$('#nav-tabContent').html(response.html);
init('#nav-tabContent');
}
}
});
});
// Delete currency
$('body').on('click', '.delete-table-row', function () {
var id = $(this).data('currency-id');
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.recoverRecord')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmDelete')",
cancelButtonText: "@lang('app.cancel')",
customClass: {
confirmButton: 'btn btn-primary mr-3',
cancelButton: 'btn btn-secondary'
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
}).then((result) => {
if (result.isConfirmed) {
let url = "{{ route('currency-settings.destroy', ':id') }}";
url = url.replace(':id', id);
const token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
blockUI: true,
data: {
'_token': token,
'_method': 'DELETE'
},
success: function (response) {
if (response.status === "success") {
$('.row' + id).fadeOut();
}
}
});
}
});
});
// update exchange rates
$('#update-exchange-rates').click(function () {
var url = "{{ route('currency_settings.update_exchange_rates') }}";
$.easyAjax({
url: url,
type: "GET",
blockUI: true,
success: function (response) {
if (response.status == "success") {
$.unblockUI();
window.location.reload();
}
}
})
});
// Currency code converter modal open script
$('#addCurrencyExchangeKey').click(function () {
const url = "{{ route('currency_settings.exchange_key') }}";
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
});
$('#addNewCurrency').click(function () {
const url = "{{ route('currency-settings.create') }}";
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
});
$("body").on("click", ".edit-channel", function () {
var currencyId = $(this).data('currency-id');
var url = "{{ route('currency-settings.edit', ':id') }}";
url = url.replace(':id', currencyId);
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
});
</script>
@endpush