@extends('layouts.admin') @section('page-title', 'Orders: ' . $customer->name) @section('content')
| # | Order # | Date | Total | Payment | Status | Options |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $order->order_number }} | {{ $order->created_at->format('M d, Y h:i A') }} | {{ price($order->total) }} | {{ ucfirst($order->payment_method ?? 'N/A') }} | {{ ucfirst($order->status) }} | View |
| No orders found. | ||||||