@extends('layouts.admin') @section('title', 'Customer Profile — ' . $customer->name) @section('content')
| Order Number | Order Date | Items Count | Total Amount | Payment Status | Order Status | Actions |
|---|---|---|---|---|---|---|
| #{{ $ord->order_number }} | {{ $ord->created_at ? $ord->created_at->format('M d, Y H:i') : '—' }} | {{ $ord->items->sum('quantity') }} items | ₹{{ number_format($ord->total_amount, 2) }} | {{ strtoupper($ord->payment_method) }} {{ ucfirst($ord->payment_status) }} | {{ ucfirst($ord->order_status) }} |