@extends('layouts.app') @section('title', 'Orders for ' . $user->name) @section('content') {{-- ── Page Header ── --}}
{{-- --}}

Orders for {{ $user->name }}

{{ $user->email }}

View User All Users
{{-- ── Orders Table ── --}}
@forelse($orders as $i => $order) @empty @endforelse
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.

{{-- ── Pagination ── --}} @if($orders->hasPages() || $orders->total() > 0)
@if($orders->hasPages()) {{ $orders->links('vendor.pagination.default') }} @endif

Showing {{ $orders->firstItem() ?? 0 }}–{{ $orders->lastItem() ?? 0 }} of {{ $orders->total() }} results

@endif @endsection @push('styles') @endpush