File "df087142d2ebd64c3b22798865c76cb53414b703.php"
Full Path: /home/fundopuh/trader.fxex.org/storage/framework/views/df087142d2ebd64c3b22798865c76cb53414b703.php
File size: 9.9 KB
MIME-type: text/x-php
Charset: utf-8
<?php $__env->startSection('content'); ?>
<div class="mt-2 mb-4">
<h1 class="title1 ">Payment Settings</h1>
</div>
<?php if (isset($component)) { $__componentOriginal431821226313d25f12c6b9e5d4f97b7033ed596e = $component; } ?>
<?php $component = $__env->getContainer()->make(App\View\Components\Admin\Alert::class, []); ?>
<?php $component->withName('admin.alert'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal431821226313d25f12c6b9e5d4f97b7033ed596e)): ?>
<?php $component = $__componentOriginal431821226313d25f12c6b9e5d4f97b7033ed596e; ?>
<?php unset($__componentOriginal431821226313d25f12c6b9e5d4f97b7033ed596e); ?>
<?php endif; ?>
<div class="mb-5 row">
<div class="col-12">
<div class="card p-md-5 p-2 shadow-lg ">
<ul class="nav nav-pills">
<li class="nav-item">
<a href="#dep" class="nav-link active" data-toggle="tab">Payment Methods</a>
</li>
<li class="nav-item">
<a href="#with" class="nav-link" data-toggle="tab">Payment Preference</a>
</li>
<li class="nav-item">
<a href="#coin" class="nav-link" data-toggle="tab">Coinpayment</a>
</li>
<li class="nav-item">
<a href="#gate" class="nav-link" data-toggle="tab">Gateways</a>
</li>
<li class="nav-item">
<a href="#trans" class="nav-link" data-toggle="tab">Transfer</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane fade show active" id="dep">
<?php echo $__env->make('admin.Settings.PaymentSettings.deposit', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="tab-pane fade" id="with">
<?php echo $__env->make('admin.Settings.PaymentSettings.withdrawal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="tab-pane fade" id="coin">
<?php echo $__env->make('admin.Settings.PaymentSettings.coinpayment', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="tab-pane fade" id="gate">
<?php echo $__env->make('admin.Settings.PaymentSettings.gateway', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="tab-pane fade" id="trans">
<?php echo $__env->make('admin.Settings.PaymentSettings.transfers', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('scripts'); ?>
<script>
// Submit payment option/ preference form
$('#paypreform').on('submit', function() {
//alert('love');
$.ajax({
url: "<?php echo e(route('paypreference')); ?>",
type: 'POST',
data: $('#paypreform').serialize(),
success: function(response) {
if (response.status === 200) {
$.notify({
// options
icon: 'flaticon-alarm-1',
title: 'Success',
message: response.success,
}, {
// settings
type: 'success',
allow_dismiss: true,
newest_on_top: false,
placement: {
from: "top",
align: "right"
},
offset: 20,
spacing: 10,
z_index: 1031,
delay: 5000,
timer: 1000,
animate: {
enter: 'animated fadeInDown',
exit: 'animated fadeOutUp'
},
});
} else {
}
},
error: function(error) {
console.log(error);
},
});
});
// Submit coinpayment form
$('#coinpayform').on('submit', function() {
//alert('love');
$.ajax({
url: "<?php echo e(route('updatecpd')); ?>",
type: 'POST',
data: $('#coinpayform').serialize(),
success: function(response) {
if (response.status === 200) {
$.notify({
// options
icon: 'flaticon-alarm-1',
title: 'Success',
message: response.success,
}, {
// settings
type: 'success',
allow_dismiss: true,
newest_on_top: false,
placement: {
from: "top",
align: "right"
},
offset: 20,
spacing: 10,
z_index: 1031,
delay: 5000,
timer: 1000,
animate: {
enter: 'animated fadeInDown',
exit: 'animated fadeOutUp'
},
});
} else {
}
},
error: function(error) {
console.log(error);
},
});
});
// Submit Gatway form
$('#gatewayform').on('submit', function() {
//alert('love');
$.ajax({
url: "<?php echo e(route('updategateway')); ?>",
type: 'POST',
data: $('#gatewayform').serialize(),
success: function(response) {
if (response.status === 200) {
$.notify({
// options
icon: 'flaticon-alarm-1',
title: 'Success',
message: response.success,
}, {
// settings
type: 'success',
allow_dismiss: true,
newest_on_top: false,
placement: {
from: "top",
align: "right"
},
offset: 20,
spacing: 10,
z_index: 1031,
delay: 5000,
timer: 1000,
animate: {
enter: 'animated fadeInDown',
exit: 'animated fadeOutUp'
},
});
} else {
}
},
error: function(error) {
console.log(error);
},
});
});
// Submit Tranfer settings form
$('#trasfer').on('submit', function() {
//alert('love');
$.ajax({
url: "<?php echo e(route('updatetransfer')); ?>",
type: 'POST',
data: $('#trasfer').serialize(),
success: function(response) {
if (response.status === 200) {
$.notify({
// options
icon: 'flaticon-alarm-1',
title: 'Success',
message: response.success,
}, {
// settings
type: 'success',
allow_dismiss: true,
newest_on_top: false,
placement: {
from: "top",
align: "right"
},
offset: 20,
spacing: 10,
z_index: 1031,
delay: 5000,
timer: 1000,
animate: {
enter: 'animated fadeInDown',
exit: 'animated fadeOutUp'
},
});
} else {
}
},
error: function(error) {
console.log(error);
},
});
});
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/fundopuh/trader.fxex.org/resources/views/admin/Settings/PaymentSettings/show.blade.php ENDPATH**/ ?>