@extends('layouts.app') @section('content')

Units - {{ $property->PropName }}

{{ $property->City }}
{{ $property->PropertyType }}

All Units

List of all units in this property.

@forelse($units as $unit) @empty @endforelse
Unit ID Unit Identity Block/Floor/Door Status Monthly Rent Tenants Actions
{{ $unit->UnitID }}
{{ $unit->UnitIdentity }}
{{ $unit->BlockNo ? 'Block ' . $unit->BlockNo : '' }} {{ $unit->FloorNo ? ' • Floor ' . $unit->FloorNo : '' }} {{ $unit->DoorNo ? ' • ' . $unit->DoorNo : '' }}
@if($unit->UnitActive) Active @else Inactive @endif Ksh {{ number_format($unit->MonthlyRent, 2) }} {{ $unit->customers_count ?? 0 }} tenant(s) View
No units found for this property.
@if($units->hasPages())
@if($units->onFirstPage()) Previous @else Previous @endif @if($units->hasMorePages()) Next @else Next @endif
@endif
@endsection