@extends('admin.layouts.main') @section('title', 'Payment Method Details') @section('page-title', 'Payment Method Details') @section('breadcrumbs')
{{ ucfirst(str_replace('_', ' ', $paymentMethod['code'])) }}
{{ date('d M Y, H:i', strtotime($paymentMethod['created_at'])) }}
Account Number: {{ $paymentMethod['account_number'] }}
@endif @if($paymentMethod['account_name'])Account Name: {{ $paymentMethod['account_name'] }}
@endif{{ count($recentPayments) }} (Recent)
Rp {{ number_format($averageAmount ?? 0, 0, ',', '.') }}
Rp {{ number_format($totalRevenue ?? 0, 0, ',', '.') }}
| Date | Payment ID | Order ID | Customer | Amount | Status |
|---|---|---|---|---|---|
| {{ date('d M Y, H:i', strtotime($payment['created_at'])) }} | #{{ $payment['id'] }} | #{{ $payment['order_id'] }} | {{ $payment['customer_name'] ?? 'N/A' }} | Rp {{ number_format($payment['amount'], 0, ',', '.') }} | {{ ucfirst($payment['status']) }} |
No recent payments recorded
@endif