@extends('client.layouts.main') @section('title', 'My Orders') @section('content')
Orders
@forelse($orders as $order) @empty @endforelse
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.
@if($orders->hasPages()) @endif
@endsection