{{ $stockInfo->item_name ?? 'N/A' }}
{{ $stockInfo->interchange_number ?? 'N/A' }}
{{ $stockInfo->condition_code ?? '' }} / {{ $stockInfo->normalized_condition ?? '' }}
{{ $stockInfo->vehicle_year ?? '' }} {{ $stockInfo->make ?? '' }} {{ $stockInfo->model ?? '' }}
{{ $stockInfo->vehicle_mileage ? number_format($stockInfo->vehicle_mileage) : 'N/A' }}
{{ $stockInfo->source_vin ?? 'N/A' }}
{{ $stockInfo->source_unique_id ?? 'N/A' }}
{{ $stockInfo->our_price ? '$' . number_format($stockInfo->our_price, 2) : 'N/A' }}
@if($stockInfo->is_active) Active @else Deactivated @endif
@if($stockInfo->is_ltl) LTL / Freight{{ $stockInfo->freight_cost ? ' — $' . number_format($stockInfo->freight_cost, 2) : '' }} @else Parcel @endif
| Supplier | Code | Partslink | Price | Shipping | Total | In Stock | Qty |
|---|---|---|---|---|---|---|---|
| {{ $supplier->supplier_name }} | {{ $supplier->supplier_code }} | {{ $supplier->partslink }} | ${{ number_format($supplier->price, 2) }} | ${{ number_format($supplier->shipping ?? 0, 2) }} | ${{ number_format(($supplier->price ?? 0) + ($supplier->shipping ?? 0), 2) }} | @if($supplier->in_stock) Yes @else No @endif | {{ $supplier->qty ?? '-' }} |