@extends('layouts.customer') @section('customer-content')
| Order # | Date | Items | Total | Payment | Status | |
|---|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ $order->items->count() }} item(s) | {{ price($order->total) }} | {{ ucfirst($order->payment_status) }} | {{ ucfirst($order->status) }} | View → |
| No orders found | ||||||