@extends('layouts.app') @section('title', 'Order History') @section('content')
| Order ID | Date | Total Amount | Status | Actions |
|---|---|---|---|---|
| {{ $order->id }} | {{ $order->created_at->format('M d, Y') }} | ${{ number_format($order->total_amount, 2) }} | {{ ucfirst($order->status) }} | View |
| No orders found. | ||||