@extends('layouts.user') @section('page-title', 'My Orders') @section('content')
| Order ID | Date | Items | Amount | Status | |
|---|---|---|---|---|---|
| {{ $o->order_number }} | {{ $o->created_at->format('d M Y') }} | {{ $o->items->sum('quantity') }} | ₹{{ number_format($o->total_amount,2) }} | View | |
| No orders yet — place your first order from the products catalog. | |||||