@extends('layouts.app', ['title' => 'Wartungen']) @section('content')
| Fahrzeug | Typ | Beschreibung | Fällig am | Werkstatt | Kosten | Status | |
|---|---|---|---|---|---|---|---|
| {{ $m->vehicle?->name ?? '–' }} | {{ $m->type_label }} | {{ $m->description ?? '–' }} | {{ $m->due_date ? \Carbon\Carbon::parse($m->due_date)->format('d.m.Y') : '–' }} | {{ $m->workshop?->name ?? '–' }} | {{ $m->cost ? number_format($m->cost, 2, ',', '.').' €' : '–' }} | {{ $m->status_label }} | @if($m->status !== 'completed') @endif |
| Keine Wartungen vorhanden | |||||||