Vehicles Management
| # | Vehicle No | Type | Brand | Model | Color | Fuel Type | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $vehicle->vehicle_no }} | {{ $vehicle->type }} | {{ $vehicle->brand }} | {{ $vehicle->model }} | {{ $vehicle->color }} | {{ $vehicle->fuel_type }} | @if($vehicle->status == 'Active') Active @elseif($vehicle->status == 'Inactive') Inactive @else Maintenance @endif |
@include('masterfiles.components.edit_vehicle')
|