Betriebskostenabrechnung {{ $utilityBill->year }}

← Zurück

Abrechnungsdetails

📄 PDF @if($utilityBill->status === 'entwurf')
@csrf
@endif
Mieter:{{ $utilityBill->tenant->full_name }}
Einheit:{{ $utilityBill->unit->property->name }} - {{ $utilityBill->unit->name }}
Abrechnungsjahr:{{ $utilityBill->year }}
Datum:{{ $utilityBill->billing_date->format('d.m.Y') }}
Status:{{ $utilityBill->status }}
Gesamtkosten:{{ number_format($utilityBill->total_cost, 2) }} €
Vorauszahlung:{{ number_format($utilityBill->prepayment, 2) }} €
{{ $utilityBill->additional_payment > 0 ? 'Nachzahlung:' : 'Guthaben:' }} {{ number_format($utilityBill->additional_payment ?: $utilityBill->credit, 2) }} €
@if($utilityBill->cost_breakdown)

Kostenaufstellung

@foreach($utilityBill->cost_breakdown as $key => $value)
{{ ['heating'=>'Heizung','water'=>'Wasser','garbage'=>'Müll','cleaning'=>'Reinigung','insurance'=>'Versicherung','tax'=>'Grundsteuer','elevator'=>'Aufzug','other'=>'Sonstiges'][$key] ?? $key }} {{ number_format($value, 2) }} €
@endforeach
@endif