@extends('admin.master') @section('title') Latest Car @endsection @section('content')
Brand: {{ $car->brand->brand_name ?? 'N/A' }}
Model: {{ $car->carModel->model_name ?? 'N/A' }}
@if($car->price)
Price: ₹{{ number_format($car->price, 2) }}
@endif
No cars selected yet.