@extends('admin.layouts.app') @section('title', 'Car Shop CRM') @section('page-title', 'Car Shop CRM') @section('page-subtitle', 'Manage your inventory and shop visibility.') @section('content')

Car Inventory

Add or modify car details directly.

Add New Car
@forelse($cars as $car) @empty @endforelse
Vehicle Price Type Status Featured Actions
@if($car->image) @else
@endif

{{ $car->year }} {{ $car->make }} {{ $car->model }}

{{ $car->mileage ?? 'N/A' }}

${{ number_format($car->price) }} {{ $car->type }} {{ $car->status }}
@csrf @method('DELETE')
No cars in inventory
@endsection