@if ($orderProducts->isEmpty())
No records found

Try adjusting your search or filters

@else
@foreach($orderProducts as $item) @endforeach
Item Name BRAND SIZE LOAD RATING PATTERN Quantity Total Amount Date

{{ $item->product_name }}

{{ $item->brand_name }} {{ isset($attributes[$item->product_id]['size']) ? $attributes[$item->product_id]['size'] : '-' }} {{ isset($attributes[$item->product_id]['load-rating']) ? $attributes[$item->product_id]['load-rating'] : '-' }} {{ isset($attributes[$item->product_id]['pattern']) ? $attributes[$item->product_id]['pattern'] : '-' }} {{ $item->total_qty }} ${{ number_format($item->total_amount, 2) }} {{ $item->order_date }}
@foreach($orderProducts as $item)
{{ $item->product_name }}

SKU: {{ $item->product_sku }}
Brand: {{ $item->brand_name }}
Size: {{ isset($attributes[$item->product_id]['size']) ? $attributes[$item->product_id]['size'] : '-' }}
Load Rating: {{ isset($attributes[$item->product_id]['load-rating']) ? $attributes[$item->product_id]['load-rating'] : '-' }}
Pattern: {{ isset($attributes[$item->product_id]['pattern']) ? $attributes[$item->product_id]['pattern'] : '-' }}
Quantity: {{ $item->total_qty }}
Total Amount: ${{ number_format($item->total_amount, 2) }}
Date: {{ $item->order_date }}

@endforeach
@endif