@extends('admin.layout') @section('content')
Payment transactions and revenue analysis
Total Revenue
${{ number_format($totalRevenue, 2) }}
| Date | Order # | Customer | Amount | Method | Processed By |
|---|---|---|---|---|---|
|
{{ $payment->created_at->format('M d, Y') }}
{{ $payment->created_at->format('h:i A') }}
|
{{ $payment->order->order_number }} |
{{ $payment->order->customer->name }}
|
${{ number_format($payment->amount, 2) }}
|
{{ ucfirst($payment->payment_method) }} |
{{ $payment->user->name ?? 'N/A' }}
|
No payments foundTry adjusting your filters to see more results. |
|||||