@extends('layouts.app', ['title' => 'Fahrzeuge']) @section('content')
| Name / Kennzeichen | Typ | Kraftstoff | Farbe | Status | Baustelle | Fahrer | Fristen | |
|---|---|---|---|---|---|---|---|---|
|
{{ $v->name }}
@if($v->license_plate)
{{ $v->license_plate }}
@endif
|
{{ $v->type_label }} | {{ $v->fuel_type_label }} | @if($v->color) {{ $v->color }} @else – @endif | {{ $v->status_label }} | {{ $v->site?->name ?? '–' }} | @if($v->driver) {{ $v->driver->first_name }} {{ $v->driver->last_name }} @else – @endif | @php $overdue = $v->deadlines->filter(fn($d) => $d->status === 'overdue')->count(); $critical = $v->deadlines->filter(fn($d) => $d->status === 'critical')->count(); $warning = $v->deadlines->filter(fn($d) => $d->status === 'warning')->count(); @endphp @if($overdue > 0) {{ $overdue }} @elseif($critical > 0) {{ $critical }} @elseif($warning > 0) {{ $warning }} @else ok @endif | |
| Keine Fahrzeuge vorhanden | ||||||||