@if(session('success'))
{{ session('success') }}
@endif
Tenant Information
- Tenant Name:
-
{{ $tenancy->customer->CustomerName }}
- Email:
- {{ $tenancy->customer->Email ?? 'N/A' }}
- Phone:
- {{ $tenancy->customer->Phone1 ?? 'N/A' }}
- ID Number:
- {{ $tenancy->customer->IDNumber ?? 'N/A' }}
Unit Information
- Unit:
-
{{ $tenancy->unit->UnitIdentity }}
- Property:
-
{{ $tenancy->unit->property->PropertyName ?? 'N/A' }}
- Block:
-
{{ $tenancy->unit->block->BlockName ?? 'N/A' }}
- Status:
-
{{ $tenancy->status->name }}
Lease Details
- Start Date:
- {{ $tenancy->start_date->format('F j, Y') }}
- End Date:
-
{{ $tenancy->end_date ? $tenancy->end_date->format('F j, Y') : 'Open-ended' }}
- Monthly Rent:
- {{ config('settings.currency_symbol') }}{{ number_format($tenancy->monthly_rent, 2) }}
- Security Deposit:
- {{ config('settings.currency_symbol') }}{{ number_format($tenancy->security_deposit, 2) }}
@if($tenancy->lease_document_path)
- Lease Document:
-
View Document
@endif
Move-in/Move-out
- Move-in Date:
-
{{ $tenancy->move_in_date ? $tenancy->move_in_date->format('F j, Y') : 'Not specified' }}
- Move-out Date:
-
{{ $tenancy->move_out_date ? $tenancy->move_out_date->format('F j, Y') : 'N/A' }}
@if($tenancy->move_in_notes)
- Move-in Notes:
- {{ $tenancy->move_in_notes }}
@endif
@if($tenancy->move_out_notes)
- Move-out Notes:
- {{ $tenancy->move_out_notes }}
@endif
@if($tenancy->services->count() > 0)
Additional Services
| Service |
Description |
Amount |
Start Date |
@foreach($tenancy->services as $service)
| {{ $service->ServiceName }} |
{{ $service->Description ?? 'N/A' }} |
{{ config('settings.currency_symbol') }}{{ number_format($service->pivot->amount, 2) }} |
{{ $service->pivot->start_date ? \Carbon\Carbon::parse($service->pivot->start_date)->format('M d, Y') : 'N/A' }} |
@endforeach
@endif
@if($tenancy->notes)
Notes
{!! nl2br(e($tenancy->notes)) !!}
@endif