@extends('client.layouts.main') @section('title', 'My Orders') @section('content')
| Order # | Date | Total | Status | Actions |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ number_format($order->total, 2) }} | @php $statusColors = [ 'pending' => 'warning', 'active' => 'success', 'completed' => 'success', 'cancelled' => 'default', 'fraud' => 'danger', ]; $color = $statusColors[$order->status] ?? 'info'; @endphp {{ ucfirst($order->status) }} | View |
| No orders found. | ||||