File "e2cc4fd3f126c5eb9007a45965ca05107b52536a.php"
Full Path: /home/fundopuh/trader.fxex.org/storage/framework/views/e2cc4fd3f126c5eb9007a45965ca05107b52536a.php
File size: 14.31 KB
MIME-type: text/html
Charset: utf-8
<div class="relative row" x-data="{ open: false }">
<div class="col-md-12">
<div>
<h3 class="d-inline ">Payment Methods</h3>
<a href="#" data-toggle="modal" data-target="#adduser" class="float-right btn btn-primary btn-sm"> <i
class='fas fa-plus-circle'></i> Add New</a>
<!-- Modal -->
<div class="modal fade" id="adduser" tabindex="-1" aria-h6ledby="exampleModalh6" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg">
<div class="modal-content">
<div class="modal-header ">
<h3 class="mb-2 d-inline ">Add New payment Method</h3>
<button type="button" class="close " data-dismiss="modal" aria-h6="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body ">
<div>
<form method="POST" action="<?php echo e(route('addpaymethod')); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="form-row">
<div class="form-group col-md-12">
<h6 class="">Name</h6>
<input type="text" class="form-control " name="name" id="name"
placeholder="Payment method name" required>
</div>
<div class="form-group col-md-6">
<h6 class="">Minimum Amount</h6>
<input type="number" class="form-control " name="minimum" id="minamount"
required>
<small class="">Required but only applies to withdrawal</small>
</div>
<div class="form-group col-md-6">
<h6 class="">Maximum Amount</h6>
<input type="number" class="form-control " name="maximum" id="maxamount"
required>
<small class="">Required but only applies to withdrawal</small>
</div>
<div class="form-group col-md-6">
<h6 class="">Charges</h6>
<input type="number" class="form-control " name="charges" id="charges"
required>
<small class="">Required but only applies to withdrawal</small>
</div>
<div class="form-group col-md-6">
<h6 class="">Charges Type</h6>
<select name="chargetype" class="form-control ">
<option value="percentage">Percentage(%)</option>
<option value="fixed">Fixed(<?php echo e($settings->currency); ?>)</option>
</select>
<small class="">Required but only applies to withdrawal</small>
</div>
<div class="form-group col-md-6">
<h6 class="">Type</h6>
<select name="methodtype" id="methodtype" class="form-control " required>
<option value="currency">Currency</option>
<option value="crypto">Crypto</option>
</select>
</div>
<div class="form-group col-md-6">
<h6 class="">Image url (Logo)</h6>
<input type="text" class="form-control " name="url" id="url">
</div>
<div class="form-group col-md-6 currency">
<h6 class="">Bank Name</h6>
<input type="text" class="form-control currinput" name="bank"
id="bank">
</div>
<div class="form-group col-md-6 currency">
<h6 class="">Account Name</h6>
<input type="text" class="form-control currinput" name="account_name"
id="acnt_name">
</div>
<div class="form-group col-md-6 currency">
<h6 class="">Account Number</h6>
<input type="number" class="form-control currinput" name="account_number"
id="acnt_number">
</div>
<div class="form-group col-md-6 currency">
<h6 class="">Swift/Other Code</h6>
<input type="text" class="form-control currinput" name="swift"
id="swift">
</div>
<div class="form-group col-md-6 d-none crypto">
<h6 class="">Wallet Address</h6>
<input type="text" class="form-control cryptoinput"
name="walletaddress" id="walletaddress">
</div>
<div class="form-group col-md-6 d-none crypto">
<h6 class="">Barcode Image (Optional)</h6>
<input type="file" name="barcode" id=""
class="form-control cryptoinput">
<small class="">Recommended Size: 575px both width and height
</small>
</div>
<div class="form-group col-md-6 d-none crypto">
<h6 class="">Wallet Address Network Type</h6>
<input type="text" placeholder="eg ERC"
class="form-control cryptoinput" name="wallettype" id="wallettype">
</div>
<div class="form-group col-md-6">
<h6 class="">Status</h6>
<select name="status" id="status" class="form-control " required>
<option value="enabled">Enable</option>
<option value="disabled">Disable</option>
</select>
</div>
<div class="form-group col-md-6">
<h6 class="">Type for</h6>
<select name="typefor" id="status" class="form-control " required>
<option value="withdrawal">Withdrawal</option>
<option value="deposit">Deposit</option>
<option value="both">Both</option>
</select>
</div>
<div class="form-group col-md-12">
<h6 class="">Optional Note</h6>
<input type="text" class="form-control " name="note"
placeholder="Payment may take up to 24 hours">
</div>
<div class="form-group col-md-12">
<button type="submit" class="px-4 btn btn-primary">Save Method</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 col-md-12 absolute">
<div class=" table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Method Name</th>
<th scope="col">Type</th>
<th scope="col">Used for</th>
<th scope="col">Status</th>
<th scope="col">Option</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $methods; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $method): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<th><?php echo e($method->name); ?></th>
<td><?php echo e($method->methodtype); ?></td>
<td><?php echo e($method->type); ?></td>
<td>
<?php if($method->status == 'enabled'): ?>
<span class=" badge badge-success"><?php echo e($method->status); ?></span>
<?php else: ?>
<span class=" badge badge-danger"><?php echo e($method->status); ?></span>
<?php endif; ?>
</td>
<td>
<a href="<?php echo e(route('editpaymethod', $method->id)); ?>" class="m-1 btn btn-primary btn-sm"
title="View">
<i class="fas fa-highlighter"></i>
</a>
<?php if($method->defaultpay == 'yes'): ?>
<button class=" btn btn-danger btn-sm" disabled data-toggle="tooltip"
data-placement="top" title="you cannot delete default method">Delete</button>
<?php else: ?>
<a href="<?php echo e(route('deletepaymethod', $method->id)); ?>"
class="m-1 btn btn-danger btn-sm">Delete</a>
<?php endif; ?>
<?php if($method->status == 'enabled'): ?>
<a href="<?php echo e(route('togglestatus', $method->id)); ?>"
class="m-1 btn btn-warning btn-sm">Disable</a>
<?php else: ?>
<a href="<?php echo e(route('togglestatus', $method->id)); ?>"
class="m-1 btn btn-success btn-sm">Enable</a>
<?php endif; ?>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
<div class="absolute top-0 w-10 bg-light">
</div>
</div>
<script>
let methodtype = document.getElementById('methodtype');
let currtype = document.querySelectorAll('.currency');
let currinput = document.querySelectorAll('.currinput');
let cryptotype = document.querySelectorAll('.crypto');
let cryptoinput = document.querySelectorAll('.cryptoinput');
currinput[0].setAttribute('required', '');
currinput[1].setAttribute('required', '');
currinput[2].setAttribute('required', '');
methodtype.addEventListener('change', sortfields);
function sortfields() {
if (methodtype.value == 'currency') {
cryptotype.forEach(element => {
element.classList.add('d-none');
});
currinput[0].setAttribute('required', '');
currinput[1].setAttribute('required', '');
currinput[2].setAttribute('required', '');
cryptoinput[0].removeAttribute('required', '');
cryptoinput[2].removeAttribute('required', '');
currtype.forEach(curr => {
curr.classList.remove('d-none');
});
} else {
cryptoinput[0].setAttribute('required', '');
cryptoinput[2].setAttribute('required', '');
currinput[0].removeAttribute('required', '');
currinput[1].removeAttribute('required', '');
currinput[2].removeAttribute('required', '');
cryptotype.forEach(element => {
element.classList.remove('d-none');
});
currtype.forEach(curr => {
curr.classList.add('d-none');
});
}
}
</script>
<?php /**PATH /home/fundopuh/trader.fxex.org/resources/views/admin/Settings/PaymentSettings/deposit.blade.php ENDPATH**/ ?>