@extends('layouts.app') @section('content')
{{ $sparePart->name }}
@if($sparePart->images && count($sparePart->images) > 1)
@foreach($sparePart->images as $image) {{ $sparePart->name }} @endforeach
@endif

{{ $sparePart->name }}

@if($sparePart->part_number) Part #: {{ $sparePart->part_number }} @endif

{{ ucfirst($sparePart->condition) }}
KSh {{ number_format($sparePart->price) }} @if($sparePart->quantity > 10) In Stock ({{ $sparePart->quantity }}) @elseif($sparePart->quantity > 0) Low Stock ({{ $sparePart->quantity }}) @else Out of Stock @endif
@if($sparePart->compatible_vehicles)

Compatible Vehicles

{{ $sparePart->compatible_vehicles }}

@endif

Category

{{ $sparePart->category->name ?? 'General Parts' }}

Location

{{ $sparePart->location }}

Description

{{ $sparePart->description }}

Seller Information

{{ $sparePart->vendor->business_name ?? $sparePart->vendor->name }}

{{ $sparePart->vendor->name }}

Verified Seller

@if($sparePart->quantity > 0) @else @endif

Free shipping within Nairobi for orders over KSh 10,000

Part Specifications

Condition

{{ $sparePart->condition }}

Category

{{ $sparePart->category->name ?? 'N/A' }}

Stock Level

{{ $sparePart->quantity }} units

Status

{{ $sparePart->quantity > 0 ? 'Available' : 'Out of Stock' }}

@if($sparePart->compatible_vehicles)

Compatibility Information

Compatible with: {{ $sparePart->compatible_vehicles }}

Please verify compatibility with your specific vehicle model before purchasing.

@endif
@if($relatedParts && $relatedParts->count() > 0)

Related Spare Parts

@foreach($relatedParts as $relatedPart)
{{ $relatedPart->name }}
{{ ucfirst($relatedPart->condition) }}
@if($relatedPart->quantity < 10)
Low Stock
@endif

{{ $relatedPart->name }}

{{ $relatedPart->part_number }}

KSh {{ number_format($relatedPart->price) }} Stock: {{ $relatedPart->quantity }}
View Details
@endforeach
@endif
@endsection