@extends('layouts.app') @section('title', 'Orders for ' . $user->name) @section('content') {{-- ── Page Header ── --}}
{{-- ── Orders Table ── --}}| ID | Customer | Product | Status | LOC | Created | Actions |
|---|---|---|---|---|---|---|
| #{{ $order->id }} |
{{ $order->site_contact_name ?? '—' }}
@if($order->site_contact_email)
{{ $order->site_contact_email }}
@endif
|
{{ $order->product_display_name }} | {{ $order->status_label }} | {{ $order->loc ?? '—' }} | {{ $order->created_at->format('M j, Y') }} | View |
|
No orders found for this user. |
||||||
Showing {{ $orders->firstItem() ?? 0 }}–{{ $orders->lastItem() ?? 0 }} of {{ $orders->total() }} results