@extends('admin_base') @section('title', 'Payments') @section('content')

Payment History

@forelse($payments as $order) @empty @endforelse
Order ID Customer Total Method Status TrxID Date Action
{{ $order->order_number }} {{ $order->contact_name }} ৳{{ number_format($order->total) }} SSLCommerz {{ ucfirst($order->payment_status ?? 'unpaid') }} {{ $order->payment_trxid ?? '-' }} {{ $order->created_at->format('d M, Y h:i A') }} View
No payments found
{{ $payments->links('pagination::bootstrap-4') }}
@endsection