{{ session('status') }}
@endif
@if ($errors->any())
Bitte prüfe deine Eingaben.
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Keine passende Versicherung gefunden.
Neu
Versicherung anlegen
Aktiv
Laufende Versicherungen
🛡️
Noch keine aktiven Versicherungen
Lege oben euren ersten Vertrag an.
@foreach($activeInsurances as $insurance)
Aktiv
@endforeach
@endif
{{ $insurance->title }}
@if($insurance->policy_number) {{ $insurance->policy_number }} @endif
@if($insurance->provider)
Gesellschaft: {{ $insurance->provider }}
@endif
{{ number_format((float) $insurance->amount, 2, ',', '.') }} € · {{ $paymentIntervals[$insurance->payment_interval] ?? $insurance->payment_interval }}
Beginn: {{ $insurance->starts_at?->format('d.m.Y') }}
@if($insurance->ends_at)
Ende: {{ $insurance->ends_at->format('d.m.Y') }}
@endif
@if($insurance->notes)
{{ $insurance->notes }}
@endif
@if($insurance->ends_at && $insurance->ends_at->between(now()->startOfDay(), now()->copy()->addDays(30)->endOfDay()))
Endet bald
@endif
@if($insurance->ends_at && $insurance->cancellation_notice_days)
@php
$noticeDate = $insurance->ends_at->copy()->subDays((int) $insurance->cancellation_notice_days);
@endphp
@if($noticeDate->between(now()->startOfDay(), now()->copy()->addDays(30)->endOfDay()))
Kündigungsfrist bald
@endif
@endif
Archiv
Gekündigt / beendet
📁
Noch keine archivierten Versicherungen
@foreach($inactiveInsurances as $insurance)
{{ $statusOptions[$insurance->status] ?? $insurance->status }}
@endforeach
@endif
{{ $insurance->title }}
@if($insurance->policy_number) {{ $insurance->policy_number }} @endif
@if($insurance->provider)
Gesellschaft: {{ $insurance->provider }}
@endif
{{ number_format((float) $insurance->amount, 2, ',', '.') }} € · {{ $paymentIntervals[$insurance->payment_interval] ?? $insurance->payment_interval }}
Beginn: {{ $insurance->starts_at?->format('d.m.Y') }}
@if($insurance->ends_at)
Ende: {{ $insurance->ends_at->format('d.m.Y') }}
@endif