@vite(['resources/css/app.css', 'resources/js/app.js'])

Versicherungen

{{ $household->name }}

Verträge, Laufzeiten und Dokumente im Blick

Zurück

Aktiv

{{ $summary['active_count'] }}

Versicherungen

Bald fällig

{{ $summary['ending_soon_count'] }}

enden in 30 Tagen

Monatlich

{{ number_format($summary['monthly_total'], 2, ',', '.') }} €

umgerechnet

Jährlich

{{ number_format($summary['yearly_total'], 2, ',', '.') }} €

umgerechnet

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())

Bitte prüfe deine Eingaben.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Neu

Versicherung anlegen

Formular
@csrf

Versicherte Person

Versicherungsnehmer

Aktiv

Laufende Versicherungen

{{ $activeInsurances->count() }}
@if($activeInsurances->isEmpty())
🛡️

Noch keine aktiven Versicherungen

Lege oben euren ersten Vertrag an.

@else
@foreach($activeInsurances as $insurance)

{{ $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
Aktiv
Bearbeiten
@csrf @method('DELETE')
@endforeach
@endif

Archiv

Gekündigt / beendet

{{ $inactiveInsurances->count() }}
@if($inactiveInsurances->isEmpty())
📁

Noch keine archivierten Versicherungen

@else
@foreach($inactiveInsurances as $insurance)

{{ $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
{{ $statusOptions[$insurance->status] ?? $insurance->status }}
Öffnen
@csrf @method('DELETE')
@endforeach
@endif
@include('partials.bottom-nav', ['active' => 'insurances'])