{{ $property->name }}

← Zurück zur Übersicht
@if(session('success'))
{{ session('success') }}
@endif
{{-- Immobilien-Details --}}

Details

Typ: {{ ucfirst($property->type) }}

Adresse: {{ $property->street }} {{ $property->house_number }}

PLZ/Ort: {{ $property->postal_code }} {{ $property->city }}

@if($property->construction_year)

Baujahr: {{ $property->construction_year }}

@endif

Einheiten: {{ $units->count() }}

@if($property->notes)

Notizen: {{ $property->notes }}

@endif
{{-- Einheiten --}}
@if($units->isEmpty())

Noch keine Einheiten für diese Immobilie erfasst.

@else
@foreach($units as $unit) @endforeach
Name Etage Fläche Zimmer Kaltmiete Status HM
{{ $unit->name }} {{ $unit->floor ?? '-' }} {{ $unit->area ? $unit->area.' m²' : '-' }} {{ $unit->rooms ?? '-' }} {{ $unit->rent_cold ? number_format($unit->rent_cold, 2).' €' : '-' }} {{ $unit->status }} {{ $unit->hausmeister_id ? \App\Models\User::find($unit->hausmeister_id)->name : '-' }} 📐 ✏️
@csrf @method('DELETE')
@endif