<div class="transaction-results">
<?php $__empty_1 = true; $__currentLoopData = $transactions ?? []; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<?php if(@$item->type == payment_gateway_const()::TYPETRANSFERMONEY): ?>
<div class="dashboard-list-item-wrapper">
<div class="dashboard-list-item sent">
<div class="dashboard-list-left">
<div class="dashboard-list-user-wrapper">
<div class="dashboard-list-user-icon">
<i class="las la-arrow-up"></i>
</div>
<?php if(@$item->attribute == payment_gateway_const()::SEND): ?>
<div class="dashboard-list-user-content">
<h4 class="title"><?php echo e(__("Transfer money to")); ?> <?php echo e(@$item->details->receiver->fullname); ?> (<?php echo e(@$item->details->receiver->email); ?>)</h4>
<?php
$type = ucfirst(strtolower($item->attribute));
?>
<span class="text--danger"><?php echo e(__($type) ?? ''); ?>
<span class="<?php echo e($item->stringStatus->class); ?> ms-2">
<?php echo e(__($item->stringStatus->value)); ?>
</span>
</span>
</div>
<?php else: ?>
<div class="dashboard-list-user-content">
<?php
$type = ucfirst(strtolower($item->attribute));
?>
<h4 class="title"><?php echo e(__("Received money from")); ?> <?php echo e(@$item->details->sender->fullname); ?> (<?php echo e(@$item->details->sender->email); ?>)</h4>
<span class="text--danger"><?php echo e(__($type) ?? ''); ?>
<span class="<?php echo e($item->stringStatus->class); ?> ms-2">
<?php echo e(__($item->stringStatus->value)); ?>
</span>
</span>
</div>
<?php endif; ?>
</div>
</div>
<div class="dashboard-list-right">
<h4 class="main-money text--base mb-0"><?php echo e(get_amount($item->request_amount,$item->request_currency)); ?></h4>
</div>
</div>
<div class="preview-list-wrapper">
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-digital-tachograph"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Transaction Number")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(@$item->trx_id); ?></span>
</div>
</div>
<?php if(@$item->attribute == payment_gateway_const()::SEND): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-compact-disc"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Request Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->request_amount,@$item->request_currency)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-coins"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Total Charge")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->total_charge,@$item->request_currency)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-money-check-alt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Payable Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->total_payable,@$item->request_currency)); ?></span>
</div>
</div>
<?php else: ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-money-check-alt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Receive Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->request_amount,@$item->request_currency)); ?></span>
</div>
</div>
<?php endif; ?>
<?php if($item->status == payment_gateway_const()::STATUSREJECTED): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-stop-circle"></i>
</div>
<div class="preview-list-user-content">
<span class="last"><?php echo e(__("Reject Reason")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="last"><?php echo e($item->reject_reason ?? ''); ?></span>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php elseif(@$item->type == payment_gateway_const()::TYPEADDMONEY): ?>
<div class="dashboard-list-item-wrapper">
<div class="dashboard-list-item sent">
<div class="dashboard-list-left">
<div class="dashboard-list-user-wrapper">
<div class="dashboard-list-user-icon">
<i class="las la-dollar-sign"></i>
</div>
<div class="dashboard-list-user-content">
<h4 class="title"><?php echo e(__(@$item->type)); ?> (<?php echo e(@$item->payment_gateway->name); ?>)</h4>
<?php
$type = ucfirst(strtolower($item->attribute));
?>
<span class="text--danger"><?php echo e(__(@$type)); ?> <span
class="<?php echo e($item->stringStatus->class); ?> ms-2"><?php echo e(__(@$item->stringStatus->value)); ?></span></span>
</div>
</div>
</div>
<div class="dashboard-list-right">
<h4 class="main-money text--base"><?php echo e(get_amount(@$item->total_payable,@$item->payment_currency,2)); ?></h4>
<h5 class="exchange-money"><?php echo e(get_amount(@$item->request_amount,@$item->request_currency,2)); ?></h5>
</div>
</div>
<div class="preview-list-wrapper">
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-exchange-alt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Transaction ID")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(@$item->trx_id); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-coins"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Gateway")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(@$item->payment_gateway->name); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-share-square"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->request_amount,@$item->request_currency)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-battery-half"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Fees & Charges")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->total_charge,@$item->request_currency,2)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-receipt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Payable Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount(@$item->total_payable,@$item->payment_currency,2)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="lab la-artstation"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Status")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="badge <?php echo e(@$item->stringStatus->class); ?>"><?php echo e(@$item->stringStatus->value); ?></span>
</div>
</div>
<?php if($item->status == payment_gateway_const()::STATUSREJECTED): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-stop-circle"></i>
</div>
<div class="preview-list-user-content">
<span class="last"><?php echo e(__("Reject Reason")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="last"><?php echo e($item->reject_reason ?? ''); ?></span>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php else: ?>
<div class="dashboard-list-item-wrapper">
<div class="dashboard-list-item sent">
<div class="dashboard-list-left">
<div class="dashboard-list-user-wrapper">
<div class="dashboard-list-user-icon">
<?php if($item->attribute == payment_gateway_const()::SEND): ?>
<i class="las la-arrow-up"></i>
<?php else: ?>
<i class="las la-arrow-down"></i>
<?php endif; ?>
</div>
<div class="dashboard-list-user-content">
<?php if($item->attribute == payment_gateway_const()::SEND): ?>
<h4 class="title"><?php echo e(__("Payment Send To")); ?> <?php echo e(__($item->details->receiver_info->name) ?? ''); ?></h4>
<?php else: ?>
<h4 class="title"><?php echo e(__("Payment Received From")); ?> <?php echo e(__($item->details->sender_info->name) ?? ''); ?></h4>
<?php endif; ?>
<?php
$type = ucfirst(strtolower($item->attribute));
?>
<span class="text--danger"><?php echo e(__($type) ?? ''); ?>
<span class="<?php echo e(@$item->stringStatus->class); ?> ms-2">
<span><?php echo e(__(@$item->stringStatus->value)); ?></span>
</span>
</span>
</div>
</div>
</div>
<div class="dashboard-list-right">
<h4 class="main-money text--base mb-0"><?php echo e(get_amount($item->request_amount,$item->request_currency) ?? ''); ?></h4>
</div>
</div>
<div class="preview-list-wrapper">
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-digital-tachograph"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Transaction Number")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e($item->trx_id ?? ''); ?></span>
</div>
</div>
<?php if(@$item->payable_charge == 1): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-digital-tachograph"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Payment Information ID")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(@$item->details->payment_info->id ?? 'Wallet'); ?></span>
</div>
</div>
<?php endif; ?>
<?php if(@$item->card_method != null): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-compact-disc"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Card Name")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<?php
$name = decrypt($item->card_method->name ?? '');
$card_number = decrypt($item->card_method->card_number ?? '');
?>
<span><?php echo e($name ?? ''); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-keyboard"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Card Number")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span>********<?php echo e(substr($card_number,-4) ?? ''); ?></span>
</div>
</div>
<?php endif; ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-coins"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Total Charge")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount($item->total_charge,$item->request_currency,2)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-money-check-alt"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Payable Amount")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(get_amount($item->total_payable,$item->request_currency,2)); ?></span>
</div>
</div>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-network-wired"></i>
</div>
<div class="preview-list-user-content">
<span><?php echo e(__("Remark")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span><?php echo e(@$item->remark); ?></span>
</div>
</div>
<?php if($item->status == payment_gateway_const()::STATUSREJECTED): ?>
<div class="preview-list-item">
<div class="preview-list-left">
<div class="preview-list-user-wrapper">
<div class="preview-list-user-icon">
<i class="las la-stop-circle"></i>
</div>
<div class="preview-list-user-content">
<span class="last"><?php echo e(__("Reject Reason")); ?></span>
</div>
</div>
</div>
<div class="preview-list-right">
<span class="last"><?php echo e($item->reject_reason ?? ''); ?></span>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<div class="alert alert-primary text-center">
<?php echo e(__("Transaction data not found!")); ?>
</div>
<?php endif; ?>
</div>
<?php /**PATH D:\xampp\htdocs\git\nfcpay\resources\views/user/components/transaction/index.blade.php ENDPATH**/ ?>
At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
3. Refund Process
To request a refund, please follow these steps:
4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.