/home/kueuepay/public_html/storage/framework/views/3bf6884f9ff169796c6b6e979e69993eed597be5.php
<?php $__env->startPush('css'); ?>
<style>
.fileholder {
min-height: 194px !important;
}
.fileholder-files-view-wrp.accept-single-file .fileholder-single-file-view,.fileholder-files-view-wrp.fileholder-perview-single .fileholder-single-file-view{
height: 150px !important;
}
</style>
<?php $__env->stopPush(); ?>
<?php $__env->startSection('page-title'); ?>
<?php echo $__env->make('admin.components.page-title',['title' => __($page_title)], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('breadcrumb'); ?>
<?php echo $__env->make('admin.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("admin.dashboard"),
]
], 'active' => __("Add Money")], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="table-area">
<div class="table-wrapper">
<div class="table-header">
<h5 class="title"><?php echo e(__("Automatic Add Money")); ?></h5>
<?php if(app()->environment('local')): ?>
<div class="table-btn-area">
<?php echo $__env->make('admin.components.link.add-default',[
'href' => "#p-gateway-automatic-add",
'class' => "modal-btn",
'text' => "Add New",
'permission' => "admin.payment.gateway.store",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<?php endif; ?>
</div>
<div class="table-responsive">
<table class="custom-table">
<thead>
<tr>
<th></th>
<th><?php echo e(__("Gateway")); ?></th>
<th><?php echo e(__("Supported Currency")); ?></th>
<th><?php echo e(__("Enabled Currency")); ?></th>
<th><?php echo e(__("Status")); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php $__empty_1 = true; $__currentLoopData = $payment_gateways; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<tr>
<td>
<ul class="user-list">
<li><img src="<?php echo e(get_image($item->image,'payment-gateways')); ?>" alt="image"></li>
</ul>
</td>
<td><?php echo e($item->name); ?></td>
<td><?php echo e(count($item->supported_currencies ?? [])); ?></td>
<td><?php echo e(count($item->currencies)); ?></td>
<td>
<?php echo $__env->make('admin.components.form.switcher',[
'name' => 'status',
'data_target' => $item->id,
'value' => $item->status,
'options' => [__('Enable') => 1, __('Disable') => 0],
'onload' => true,
'permission' => "admin.payment.gateway.status.update",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</td>
<td>
<?php echo $__env->make('admin.components.link.edit-default',[
'href' => setRoute('admin.payment.gateway.edit',['add-money','automatic',$item->alias]),
'permission' => "admin.payment.gateway.edit",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<?php echo $__env->make('admin.components.alerts.empty',['colspan' => 6], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
<?php if(admin_permission_by_name("admin.payment.gateway.store")): ?>
<?php if(app()->environment('local')): ?>
<div id="p-gateway-automatic-add" class="mfp-hide large">
<div class="modal-data">
<div class="modal-header">
<h5 class="modal-title"><?php echo e(__("Add Automatic Gateway (Add Money)")); ?></h5>
</div>
<div class="modal-form-data">
<form class="modal-form" method="POST" action="<?php echo e(setRoute('admin.payment.gateway.store',['add-money','automatic'])); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="row mb-10-none">
<div class="col-xl-12 col-lg-12 form-group">
<label for="gatewayImage"><?php echo e(__("Gateway Image")); ?></label>
<div class="col-12 col-sm-3 m-auto">
<?php echo $__env->make('admin.components.form.input-file',[
'label' => false,
'class' => "file-holder m-auto",
'name' => "image",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Gateway Name")."*",
'name' => "gateway_name",
'data_limit' => 60,
'value' => old('gateway_name'),
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Gateway Title")."*",
'name' => "gateway_title",
'data_limit' => 60,
'value' => old('gateway_title'),
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<?php echo $__env->make('admin.components.form.select',[
'label' => __("Supported Currencies")."*",
'name' => "supported_currencies[]",
'multiple' => true,
'attribute' => "required",
'class' => "select2-auto-tokenize",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-12 col-lg-12 form-group">
<div class="custom-inner-card input-field-generator" data-source="add_money_automatic_gateway_credentials_field">
<div class="card-inner-header">
<h6 class="title"><?php echo e(__("Genarate Fields")); ?></h6>
<button type="button" class="btn--base add-row-btn"><i class="fas fa-plus"></i> <?php echo e(__("Add")); ?></button>
</div>
<div class="card-inner-body">
<div class="results">
<div class="row align-items-end">
<div class="col-xl-3 col-lg-3 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Title")."*",
'name' => "title[]",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-3 col-lg-3 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Name")."*",
'name' => "name[]",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-5 col-lg-5 form-group">
<?php echo $__env->make('admin.components.form.input',[
'label' => __("Value"),
'name' => "value[]",
], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="col-xl-1 col-lg-1 form-group">
<button type="button" class="custom-btn btn--base btn--danger row-cross-btn w-100"><i class="las la-times"></i></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-12 col-lg-12 form-group d-flex align-items-center justify-content-between mt-4">
<button type="button" class="btn btn--danger modal-close"><?php echo e(__("Cancel")); ?></button>
<button type="submit" class="btn btn--base"><?php echo e(__("Add")); ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
<?php endif; ?>
<?php endif; ?>
<?php $__env->stopSection(); ?>
<?php $__env->startPush('script'); ?>
<script>
$(document).ready(function(){
openModalWhenError("automatic-add-money","#p-gateway-automatic-add");
switcherAjax("<?php echo e(setRoute('admin.payment.gateway.status.update')); ?>");
});
</script>
<?php $__env->stopPush(); ?>
<?php echo $__env->make('admin.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\xampp\htdocs\git\nfcpay\resources\views/admin/sections/payment-gateways/add-money/automatic/index.blade.php ENDPATH**/ ?>
Run Command [Bypass]
Run Command
Journal Details
top
The Future of Digital Wallets: How Mobile Payments are Shaping the Financial Landscape
Digital wallets have fundamentally transformed how we manage money, offering a streamlined, secure, and highly efficient method for handling payments and transactions. By consolidating credit, debit, and loyalty card information into a single app, digital wallets simplify the payment process and eliminate the need for physical cards, enhancing both convenience and security. As digital wallets evolve, they are integrating advanced features that push the boundaries of traditional payment methods. Biometric authentication, such as fingerprint and facial recognition, adds an extra layer of security, ensuring that only authorized users can access their payment information. Real-time transaction alerts provide instant notifications for every transaction, allowing users to monitor their spending and detect any unauthorized activity swiftly. Budgeting tools within digital wallets offer personalized insights and financial management capabilities, helping users track their expenses and plan their budgets more effectively. The growing adoption of digital wallets is fueled by their ease of use and the increasing demand for contactless payment solutions. As technology advances, digital wallets are likely to incorporate even more innovative features, such as artificial intelligence for personalized financial advice, integrated loyalty programs for seamless rewards management, and cross-border transaction capabilities for global shopping convenience. The integration of these features is reshaping the financial landscape by making transactions not only faster but also more secure and user-friendly. The future of digital wallets is set to further revolutionize how we handle our finances, offering an all-encompassing solution that caters to the evolving needs of modern consumers. As digital wallets continue to advance, they will play an increasingly central role in shaping the future of financial interactions, driving the global shift towards a more digital and cashless economy.
Tags
In the digital age, privacy concerns have become increasingly paramount, prompting the European Union to enact the General Data Protection Regulation (GDPR) in 2018. Among its many provisions, GDPR sets strict guidelines for the collection and processing of personal data, including the use of cookies on websites. Privacy Policy
Allow
Decline