{{ $pageTitle }}

{{ __('Description') }}

{{ $property->description }}

{{ __('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
{{ __('Unit Name') }} {{ __('Bedroom') }} {{ __('Baths') }} {{ __('Kitchen') }} {{ __('Availability') }}
{{ $propertyUnit->unit_name }} {{ $propertyUnit->bedroom }} {{ $propertyUnit->bath }} {{ $propertyUnit->kitchen }} @if (@$propertyUnit->tenant_status == TENANT_STATUS_ACTIVE) {{ __('Not Available') }} @else {{ __('Available') }} @endif
{{ __('No Unit Found') }}