@extends('layouts.app') @section('content')

Ajoneuvot

Uusi ajoneuvo Lisaa liitteilla @php $inventoryLabels = [ 'in_stock' => 'Varastossa', 'reserved' => 'Varattu', 'offered' => 'Tarjouksella', 'under_contract' => 'Sopimuksella', 'invoiced' => 'Laskutettu', 'delivered' => 'Toimitettu', ]; $conditionLabels = [ 'new' => 'Uusi', 'used' => 'Käytetty', ]; @endphp
Näytetään {{ $vehicles->count() }} ajoneuvoa
@foreach($vehicles as $vehicle)@php $historyCompany = $vehicle->ownershipHistory->sortByDesc('started_at')->first()?->company; $displayCompany = $vehicle->company ?? $historyCompany; @endphp@endforeach
MerkkiMalliKuntoValmistajaRahoitusyhtiöVINRekisteritunnusAsiakasTila
{{ $vehicle->vehicle_brand }}{{ $vehicle->vehicle_model }}{{ $conditionLabels[$vehicle->condition_type] ?? '-' }}{{ $vehicle->manufacturer_name ?: '-' }}{{ $vehicle->financing_company_name ?: '-' }}{{ $vehicle->vin }}{{ $vehicle->registration_number ?: '-' }}@if($displayCompany){{ $displayCompany->name }}@if(!$vehicle->company) (historia)@endif @else - @endif{{ $inventoryLabels[$vehicle->inventory_status] ?? $vehicle->inventory_status }}Avaa
@endsection