Try adjusting your search or filters
@if($this->activeFiltersCount > 0) @endif| Order @if($sortBy === 'id') @else @endif | Customer PO @if($sortBy === 'customer_po') @else @endif | Customer | Season | Status @if($sortBy === 'status') @else @endif | Match | Lines | Qty | Imported @if($sortBy === 'imported_at') @else @endif | Actions |
|---|---|---|---|---|---|---|---|---|---|
| #{{ $order->id }} | {{-- Customer PO --}}{{ $order->customer_po ?? '—' }} | {{-- Customer --}}{{ $order->customer?->name ?? '—' }} | {{-- Season --}}{{ $order->season?->description ?? '—' }} | {{-- Status Badge --}}@if($statusOpt) {{ $statusOpt['label'] }} @endif | {{-- Match Status --}}
{{ $matchPercent }}%
@if($order->unmatched_lines > 0)
{{ $order->unmatched_lines }} unmatched
@endif
|
{{-- Lines --}}
{{ $order->total_lines }} | {{-- Qty --}}— | {{-- Imported Date --}}
@if($order->imported_at)
{{ $order->imported_at->format('d M') }}
@else
—
@endif
|
{{-- Actions --}}
{{-- View/Edit --}}
{{-- Status-specific actions --}}
@if($order->status === 'skeleton')
@elseif($order->status === 'pending_pd')
@elseif($order->status === 'pending_merch')
@endif
{{-- Delete (except confirmed) --}}
@if($order->status !== 'confirmed')
@endif
|