{{ $tenant->full_name }}

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

Mieterdetails

@if($tenant->company)

Unternehmen: {{ $tenant->company }}

@endif

Name: {{ $tenant->full_name }}

Email: {{ $tenant->email }}

@if($tenant->phone)

Telefon: {{ $tenant->phone }}

@endif @if($tenant->street)

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

{{ $tenant->postal_code }} {{ $tenant->city }}

@endif @if($tenant->birth_date)

Geburtsdatum: {{ $tenant->birth_date->format('d.m.Y') }}

@endif @if($tenant->move_in_date)

Einzug: {{ $tenant->move_in_date->format('d.m.Y') }}

@endif @if($tenant->move_out_date)

Auszug: {{ $tenant->move_out_date->format('d.m.Y') }}

@endif
@if($tenant->unit)

Zugewiesene Einheit:

{{ $tenant->unit->property->name }}
{{ $tenant->unit->name }}
{{ $tenant->unit->property->street }} {{ $tenant->unit->property->house_number }}

@endif @if($tenant->notes)

Notizen:

{{ $tenant->notes }}

@endif
{{-- Verträge --}}

Mietverträge

@if($tenant->contracts->isEmpty())

Noch keine Verträge erfasst.

@else
@foreach($tenant->contracts as $contract) @endforeach
Einheit Start Ende Miete Status
{{ $contract->unit->name }} {{ $contract->start_date->format('d.m.Y') }} {{ $contract->end_date ? $contract->end_date->format('d.m.Y') : 'unbefristet' }} {{ number_format($contract->rent_amount, 2) }} € {{ $contract->status }}
@endif