/home/kueuepay/public_html/storage/framework/views/dfd12145987fd0a5be070daf517b4fa645214285.php
<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**/ ?>
Journal Details
top
blog

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