Tenants

Manage and organize your tenant directory.

@can('owner-admin') Add New Tenant @endcan
Search
@if($tenants->count() > 0) @can('owner-admin') @endcan @foreach($tenants as $tenant) @can('owner-admin') @endcan @endforeach
Tenant Details Contact Info Demographics Emergency Document Joined DateActions
{{ strtoupper(mb_substr($tenant->user->name ?? 'T', 0, 1, 'UTF-8')) }}
{{ $tenant->user->name }}
{{ $tenant->user->email }}
{{ $tenant->phone }}
{{ $tenant->ic_number ? 'IC: ' . $tenant->ic_number : 'Pass: ' . $tenant->passport }}
{{ $tenant->nationality }}
{{ $tenant->gender }} • {{ $tenant->occupation ?? 'N/A' }}
@if($tenant->emergencyContacts->count())
@foreach($tenant->emergencyContacts as $contact)
{{ $contact->name }} ({{ $contact->phone }})
@endforeach
@else @endif
@if($tenant->ic_photo_path) Uploaded @else Missing @endif {{ $tenant->created_at->format('d M Y') }}
@csrf @method('DELETE')
@else

No tenants found

Get started by creating a new tenant.

@endif
@if($tenants->hasPages())
{{ $tenants->links() }}
@endif