@extends('layouts.admin', ['heading' => 'Orders', 'subheading' => 'Approve, cancel, and track orders']) @section('content')
Export Excel Export PDF
@forelse($orders as $order) @empty @endforelse
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)) }}
@csrf
@csrf
@csrf
Invoice
@csrf
No orders found.
{{ $orders->links() }}
@endsection