@extends('admin.layouts.app') @section('title', 'All Transactions') @section('content')

All Transactions

Global transaction history across the platform.

@if(request()->anyFilled(['search', 'type'])) Reset @endif
@forelse($transactions as $trx) @empty @endforelse
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.
{{ $transactions->links() }}
@endsection