@include('front.layout.header')
Home{{$detail->title ?? ''}}
@php $carImages = $detail->getMedia('car_images'); @endphp @forelse($carImages as $image)
{{ $detail->title ?? '' }}
@if($detail->video_link_url)
Video
@endif All image
@empty
No Image Available
@endforelse
{{-- Dealer/Seller Widget --}}
@php $profileImage = optional($detail->user)->getFirstMediaUrl('profile_pictures') ?: asset('assets/images/avatar.webp'); @endphp
image

{{ $detail->user?->name ?? 'N/A' }}

Verified dealer

{{ collect([ $detail->address, $detail->city, $detail->state, $detail->zip ])->filter()->implode(', ') }}

Contact dealer
@if($detail->user?->phone) Call to seller @else Call to seller @endif Check Availability

Description

{{ $detail->description }}

@php $docs = $detail->getMedia('car_documents'); @endphp @if($docs->isNotEmpty())
@foreach($docs as $doc) Download {{ $doc->name }} @endforeach
@endif
{{-- Price Widget --}}

{{ $detail->title ?? '' }}

@if($detail->mileage)
{{ number_format($detail->mileage) }} {{$detail->mileage_unit}}
@endif @if($detail->fuelType)
{{ $detail->fuelType->name }}
@endif @if($detail->transmission)
{{$detail->transmission->name }}
@endif @if($detail->condition)
{{ $detail->condition->name }}
@endif
${{ number_format($detail->price) }}
{{-- Dealer/Seller Widget --}}
@php $profileImage = optional($detail->user)->getFirstMediaUrl('profile_pictures') ?: asset('assets/images/avatar.webp'); @endphp
image

{{ $detail->user?->name ?? 'N/A' }}

Verified dealer

{{ collect([ $detail->address, $detail->city, $detail->state, $detail->zip ])->filter()->implode(', ') }}

@include('front.layout.footer')