@extends('layouts.app') @section('title', 'My Orders') @section('content')
| Order Number | Date | Items | Total | Status | Action |
|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ $order->items->count() }} item(s) | {{ \App\Support\Currency::symbol() }}{{ number_format($order->total, 2) }} | {{ ucfirst($order->status) }} | View |