@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Owner Dashboard') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if($kyc_status !== 'approved')
Property Owner Verification (KYC)

Please verify your identity and tax registry status before managing properties.

@if($kyc_status === 'pending')
Your KYC documents have been submitted and are pending review by a System Administrator.
@elseif($kyc_status === 'rejected')
Your previous KYC verification request was rejected. Please re-submit valid details and documents.
@endif @if($kyc_status === 'pending')
Awaiting Verification Approval...
@else
@csrf
@endif
@else
Revenue Analytics
6-Month collections overview
Unit Occupancy

{{ $occupancyRate }}%

Total units leased out successfully

My Properties
Add Property
@forelse($properties as $property) @empty @endforelse
Property Name Address Type Units Count
{{ $property->name }} {{ $property->address }} {{ str_replace('_', ' ', ucfirst($property->type)) }} {{ $property->units->count() }}
No properties registered yet.
Pending Tenant Verifications

Approve KYC profiles for tenants leasing your properties.

@forelse($pendingTenants as $tenant) @php $files = glob(storage_path("app/private/kyc/tenant_{$tenant->id}/document.*")); $fileName = count($files) > 0 ? basename($files[0]) : 'document.pdf'; @endphp @empty @endforelse
Tenant Type Document Action
{{ $tenant->name }}
@if($tenant->tenantProfile->company_name)
{{ $tenant->tenantProfile->company_name }}
@endif
{{ ucfirst($tenant->tenantProfile->tenant_type) }} View Doc
@csrf
@csrf
No pending tenant verifications.
@endif
@endsection @if($kyc_status === 'approved') @section('vendor-style') @vite(['resources/assets/vendor/libs/apex-charts/apex-charts.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/apex-charts/apexcharts.js']) @endsection @section('page-script') @endsection @endif