{{ $appointment->title }}

← Zurück
{{ $appointment->status }}
✏️ Bearbeiten @if($appointment->status === 'geplant')
@csrf
@endif
Typ: {{ $appointment->type_label }}
Beginn: {{ $appointment->start_time->format('d.m.Y H:i') }} Uhr
@if($appointment->end_time)
Ende: {{ $appointment->end_time->format('H:i') }} Uhr
@endif @if($appointment->location)
Ort: {{ $appointment->location }}
@endif @if($appointment->unit)
Einheit: {{ $appointment->unit->property->name }} - {{ $appointment->unit->name }}
@endif @if($appointment->tenant)
Mieter: {{ $appointment->tenant->full_name }}
@endif @if($appointment->description)
Beschreibung: {{ $appointment->description }}
@endif