@extends('dashboard.admin.layout') @section('title', 'Inventory Cars') @section('page_subtitle', 'Inventory table first, with add-car flow moved into a modal.') @section('content')
| ID | Preview | Name | Price | Available | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $car->id }} |
@if($car->hero_image)
|
{{ $car->name }} ({{ $car->year }}) | ${{ number_format($car->price, 2) }} | {{ $car->is_available ? 'Yes' : 'No' }} | {{ $car->trashed() ? 'Deleted' : 'Active' }} | @if(!$car->trashed()) @else @endif |
| No inventory cars yet. | ||||||