Invoice No | Customer | Amount | Status |
---|---|---|---|
{{ $order->invoice_no ?? 'N/A' }}
#{{ $order->id }}
|
{{ $order->customer->name }} | {{ config('custom.currency_symbol') }} {{ number_format($order->total_amount, 2) }} | {{ ucfirst($order->status) }} |
No recent orders |
Date | Type | Amount | Status |
---|---|---|---|
{{ $transaction->created_at->format('M d, Y') }} | {{ ucfirst($transaction->type) }} | {{ config('custom.currency_symbol') }} {{ number_format($transaction->amount, 2) }} | {{ $transaction->status }} |
No recent transactions |