@extends('layouts.admin', ['heading' => 'Orders', 'subheading' => 'Approve, cancel, and track orders']) @section('content')
| Order | Member | Amount | BV | Status | Actions |
|---|---|---|---|---|---|
|
{{ $order->order_number }}
{{ optional($order->created_at)->format('Y-m-d H:i') }}
|
{{ $order->user?->member_code ?? 'N/A' }}
{{ $order->user?->name ?? '' }}
|
{{ number_format((float) $order->total, 2) }} | {{ number_format((float) $order->total_bv, 2) }} | {{ ucfirst(str_replace('_',' ', $order->status)) }} | |
| No orders found. | |||||