@extends('layouts.app') @section('title', 'Executive Car Dashboard') @section('content')
| Vehicle | Category / Brand | Price | Status | Actions |
|---|---|---|---|---|
|
{{ $vehicle->year }} {{ $vehicle->name }}
VIN: {{ $vehicle->vin ?: 'WP0ZZZ99ZPS2941' }}
|
{{ $vehicle->brand }}
{{ $vehicle->category }}
|
${{ number_format($vehicle->price) }} | @if($vehicle->status === 'Available') Available @elseif($vehicle->status === 'Reserved') Reserved @else Sold @endif | |
| No vehicles found in showroom inventory. | ||||