@extends('admin.layouts.app') @section('title', 'Orders') @section('page-title', 'Orders') @section('content')
| Order # | Customer | Total | Status | Date | Actions |
|---|---|---|---|---|---|
| {{ $order->order_number }} |
{{ $order->user->name ?? 'Guest' }}
{{ $order->shipping_email }}
|
{{ $currency_symbol }}{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | {{ $order->created_at->format('M d, Y') }} | View |
| No orders found | |||||