@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Caretaker Facility Portal - South Front Technologies') @section('content')

Caretaker Facility Console

Assigned Properties: {{ $properties->pluck('name')->implode(', ') ?: 'None' }}

Inspections @if($properties->isNotEmpty()) Quick Meter Entry @endif
Meter Readings

Bulk entry of monthly water and electricity readings for all assigned units.

@if($properties->isNotEmpty()) Open Bulk Sheet → @else No assigned properties @endif
Open Repairs

{{ $openMaintenance->count() }} maintenance jobs requiring inspection or technician access.

View Maintenance Tickets →
Vacant Units Guide

{{ $vacantUnits->count() }} vacant units ready for tenant viewings and walkthroughs.

Check Vacancies →
Available Units for Letting
@forelse($vacantUnits as $unit) @empty @endforelse
Property Unit Monthly Rent Service Charge
{{ $unit->property->name }} Unit {{ $unit->unit_number }} Ksh {{ number_format($unit->rental_rate, 2) }} Ksh {{ number_format($unit->service_charge, 2) }}
No vacant units available. 100% full occupancy!
Active Maintenance Jobs
@forelse($openMaintenance as $ticket)
{{ $ticket->title }} {{ $ticket->property->name }} • Unit {{ $ticket->unit->unit_number }}
{{ \Illuminate\Support\Str::limit($ticket->description, 60) }}
{{ ucfirst($ticket->status) }}
@empty
No active maintenance issues on your properties.
@endforelse
@endsection