@extends('admin.layouts.app') @section('title', 'All Transactions') @section('content')
Global transaction history across the platform.
| Date | User | Type | Amount | Method | Status |
|---|---|---|---|---|---|
| {{ $trx->created_at->format('d M, Y h:i A') }} |
{{ $trx->user->name ?? 'Deleted User' }} {{ $trx->payment_id }} |
{{ str_replace('_', ' ', strtoupper($trx->type)) }} | ₹{{ number_format($trx->amount, 2) }} | {{ $trx->gateway }} | {{ $trx->status }} |
| No transactions found. | |||||