@if(session('success'))
{{ session('success') }}
@endif
@if($appointments->isEmpty())

Noch keine Termine.

@else
@foreach($appointments as $appointment)
{{ $appointment->type_label }} {{ $appointment->status }}

{{ $appointment->title }}

📍 {{ $appointment->location ?? ($appointment->unit ? $appointment->unit->property->street.' '.$appointment->unit->property->house_number : '-') }} @if($appointment->tenant) · 👤 {{ $appointment->tenant->full_name }} @endif
🕐 {{ $appointment->start_time->format('d.m.Y H:i') }} @if($appointment->end_time) - {{ $appointment->end_time->format('H:i') }} @endif
👁️ ✏️ @if($appointment->status === 'geplant')
@csrf
@endif
@csrf @method('DELETE')
@endforeach
@endif