{{ $this->form }} @if($hasSearched) {{-- Stock Info Card --}} @if($stockInfo) Stock Info — {{ $partNumber }} @if($stockInfo->is_ltl) LTL — Freight @endif
Part Name

{{ $stockInfo->item_name ?? 'N/A' }}

Interchange

{{ $stockInfo->interchange_number ?? 'N/A' }}

Condition

{{ $stockInfo->condition_code ?? '' }} / {{ $stockInfo->normalized_condition ?? '' }}

Vehicle

{{ $stockInfo->vehicle_year ?? '' }} {{ $stockInfo->make ?? '' }} {{ $stockInfo->model ?? '' }}

Mileage

{{ $stockInfo->vehicle_mileage ? number_format($stockInfo->vehicle_mileage) : 'N/A' }}

VIN

{{ $stockInfo->source_vin ?? 'N/A' }}

Stock #

{{ $stockInfo->source_unique_id ?? 'N/A' }}

Our Price

{{ $stockInfo->our_price ? '$' . number_format($stockInfo->our_price, 2) : 'N/A' }}

Status

@if($stockInfo->is_active) Active @else Deactivated @endif

Shipping

@if($stockInfo->is_ltl) LTL / Freight{{ $stockInfo->freight_cost ? ' — $' . number_format($stockInfo->freight_cost, 2) : '' }} @else Parcel @endif

@else
No stock record found in recycler_stock for this part number.
@endif {{-- Supplier Prices Table --}} Supplier Prices @if(count($supplierPrices) > 0)
@foreach($supplierPrices as $supplier) @endforeach
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 ?? '-' }}
@else
No supplier prices found for this exact partslink.
@endif
@endif