@extends('layouts.user') @section('title', 'Vehicle Details') @section('content')
Vehicles {{ $vehicle->vehicle_id }}

{{ $vehicle->make }} {{ $vehicle->model }}

{{ $vehicle->year }} • {{ $vehicle->vin_number }}

Vehicle Information

Vehicle ID

{{ $vehicle->vehicle_id }}

Make

{{ $vehicle->make ?? 'N/A' }}

Model

{{ $vehicle->model ?? 'N/A' }}

Year

{{ $vehicle->year ?? 'N/A' }}

VIN Number

{{ $vehicle->vin_number ?? 'N/A' }}

License Plate

{{ $vehicle->license_plate ?? 'N/A' }}

Color

{{ $vehicle->color ?? 'N/A' }}

Acquisition Date

{{ $vehicle->acquisition_date ? $vehicle->acquisition_date->format('M d, Y') : 'N/A' }}

@if($vehicle->comments)

Comments

{{ $vehicle->comments }}

@endif
@if($vehicle->images && count($vehicle->images) > 0)

Vehicle Images

@foreach($vehicle->images as $image)
Vehicle Image
@endforeach
@endif

Status

Ownership

{{ $vehicle->ownership }}

Status

{{ $vehicle->status }}

Actions

Edit Vehicle
@csrf @method('DELETE')
@endsection