{{-- Order Items Section --}}
@if(empty($orderItems)) @else @foreach($orderItems as $index => $item) @endforeach @endif
ID External Item ID Product ID Name Part # / Partslink Price Qty
No data available in table
{{ $index + 1 }}
{{-- Search by Products Section --}}

Search by Products:

@if(count($productSearchResults) > 0)
@foreach($productSearchResults as $product) @endforeach
ID Name SKU Partslink # In stock Price
{{ $product['product_id'] }} {{ $product['name'] }} {{ $product['sku'] }} {{ $product['partslink'] ?? '' }} {{ $product['in_stock'] }} ${{ number_format($product['price'], 2) }}
@endif