Payment Table

Here you can view and manage all payment transactions. This table provides detailed information about each payment, including order ID, customer ID, transaction amount, currency, status, and the date the payment was made. You can also download and copy this information in Excel and PDF formats.

@if ($payments->isEmpty()) @else @php $i = 1; @endphp @foreach ($payments as $payment) @endforeach @endif
SL No. Oder Id Stripe Customer Id stripe Charge Id Transaction Id Amount currency status Order Date
No orders available
{{ $i++ }} #OID_{{$payment->order_id}} {{ $payment->stripe_customer_id }} {{ $payment->transaction_id }} ${{ $payment->amount }} {{ $payment->currency }} {{ ucfirst($payment->status) }} {{ $payment->created_at->format('d-m-Y') }}