@extends('layouts.admin') @section('title', 'Payments Management') @section('content')
View all payment transactions
| Transaction ID | Business | Amount | Method | Status | Date | Actions |
|---|---|---|---|---|---|---|
{{ $payment->transaction_id }} |
{{ $payment->business->business_name ?? 'N/A' }} | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} | {{ ucfirst($payment->payment_method) }} | {{ ucfirst($payment->status) }} | {{ $payment->payment_date ? $payment->payment_date->format('M d, Y') : 'N/A' }} | |
| No payments found | ||||||