@extends('layouts.dealer.app') @section('title', 'Listing Details') @section('content')
{{ $listing->specification?->make ?? 'N/A' }}
{{ $listing->specification?->model ?? 'N/A' }}
{{ $listing->specification?->year ?? 'N/A' }}
{{ $listing->specification?->trim ?? 'N/A' }}
{{ $listing->specification?->vin ?? 'N/A' }}
{{ $listing->specification?->engine_capacity ?? 'N/A' }} cc
{{ ucfirst($listing->specification?->fuel_type ?? 'N/A') }}
{{ ucfirst($listing->specification?->transmission ?? 'N/A') }}
{{ $listing->specification?->drive_type ?? 'N/A' }}
{{ number_format($listing->specification?->mileage ?? 0) }} miles
{{ ucfirst($listing->specification?->body_type ?? 'N/A') }}
{{ $listing->specification?->exterior_color ?? 'N/A' }}
{{ $listing->specification?->interior_color ?? 'N/A' }}
{{ $listing->specification?->seats ?? 'N/A' }}
{{ $listing->specification?->doors ?? 'N/A' }}
${{ number_format($listing->price, 2) }}
@if ($listing->financing_options && count($listing->financing_options) > 0) {{ implode(', ', array_map('ucfirst', $listing->financing_options)) }} @else N/A @endif
No features listed
@endif{{ $listing->title }}
{{ $listing->location }}
{{ $listing->description }}
{!! $listing->status->badge() !!}
{{ $listing->created_at->format('d M Y, h:i A') }}