/home/kueuepay/public_html/resources/views/admin/components/data-table/payment-table.blade.php
<table class="custom-table payment-search-table">
    <thead>
        <tr>
            <th>{{ __("Transaction ID") }}</th>
            <th>{{ __("Payment Type") }}</th>
            <th>{{ __("Amount") }}</th>
            <th>{{ __("Type") }}</th>
            <th>{{ __("Status") }}</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
        @forelse ($transactions ?? [] as $item)
            <tr>
                <td><span>{{ $item->trx_id ?? '' }}</span></td>
                <td><span class="text-capitalize">{{ $item->payment_type ?? '' }}</span></td>
                <td>{{ get_amount(@$item->request_amount,@$item->request_currency,2) }}</td>
                <td>{{ $item->attribute ?? '' }}</td>
                <td>{{ @$item->stringStatus->value ?? '' }}</td>
                <td>
                    <a href="{{ setRoute('admin.payment.logs.details',@$item->trx_id) }}" class="btn btn--base btn--primary"><i class="las la-info-circle"></i></a>
                </td>
            </tr>
        @empty
            @include('admin.components.alerts.empty',['colspan' => 5])
        @endforelse
        
    </tbody>
</table>
Transfer Money
top

Effortless and Secure Money Transfers

Our transfer system provides a seamless and secure way to move your funds. Enjoy a straightforward process with top-notch security features, ensuring that sending money to friends, family, or businesses is both quick and worry-free. Experience smooth transactions with confidence, knowing that your security is our highest priority.

  • Access the Transfer Section: Open the transfer section on our website or app.
  • Choose a Recipient: Select the recipient from your contacts or manually enter their details.
  • Enter the Amount: Specify the amount you want to transfer.
  • Authorize the Transfer: Confirm the transaction using your PIN or biometric authentication.
  • Receive Confirmation: Get a confirmation message indicating that your transfer was successful.
img