Mieter:
{{ $contract->tenant->full_name }}
Einheit:
{{ $contract->unit->property->name }} - {{ $contract->unit->name }}
Adresse:
{{ $contract->unit->property->street }} {{ $contract->unit->property->house_number }},
{{ $contract->unit->property->postal_code }} {{ $contract->unit->property->city }}
Mietbeginn:
{{ $contract->start_date->format('d.m.Y') }}
Mietende:
{{ $contract->end_date ? $contract->end_date->format('d.m.Y') : 'unbefristet' }}
Kaltmiete:
{{ number_format($contract->rent_amount, 2) }} €
Kaution:
{{ $contract->deposit_amount ? number_format($contract->deposit_amount, 2).' €' : '-' }}
Status:
{{ $contract->status }}
@if($contract->notes)
Notizen:
{{ $contract->notes }}
@endif