@extends('layouts.admin') @section('title', 'Payments') @section('content')
| Transaction ID | Order | Gateway | Amount | Status | |
|---|---|---|---|---|---|
| {{ $payment->transaction_id ?? '-' }} | {{ $payment->order->order_number ?? '-' }} | {{ strtoupper($payment->gateway) }} | ₹{{ number_format($payment->amount, 2) }} | {{ ucfirst($payment->status) }} | View |
| No payments found. | |||||