{{ $pageTitle }}

{{ __('Description') }}

{{ $property->description }}

@if($document) @else @endif

{{ __('Property Details') }}

{{-- --}}
{{ __('Total Unit') }} {{ count($property->propertyUnits) }}
{{ __('Available for Lease') }} {{ $property->available_unit }}
{{ __('Current Tenants') }} {{ $property->number_of_unit - $property->available_unit }}
{{ __('Average Rent') }} {{ currencyPrice($property->avg_general_rent) }}
{{ __('Security Deposit') }} {{ currencyPrice($property->total_security_deposit) }}
{{ __('Late fee') }} {{ currencyPrice($property->total_late_fee) }}
{{ __('Maintainer Name') }} {{ $property->first_name }} {{ $property->last_name }}

{{ __('All Unit Details') }}

{{--
--}}
@forelse($units as $propertyUnit) @empty @endforelse
{{ __('SL') }} {{ __('Unit Name') }} {{ __('Bedroom') }} {{ __('Baths') }} {{ __('Kitchen') }} {{ __('Availability') }}
{{ $loop->iteration }} {{ $propertyUnit->unit_name }} {{ $propertyUnit->bedroom }} {{ $propertyUnit->bath }} {{ $propertyUnit->kitchen }} @if (@$propertyUnit->first_name != null) {{ __('Not Available') }} @else {{ __('Available') }} @endif
{{ __('No Unit Found') }}