@extends('layouts.dashboard') @section('title', __('messages.tenants')) @section('header', 'Tenant Management') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')
Manage all tenant accounts and information
| Tenant | Contact | Active Lease | Property | Actions |
|---|---|---|---|---|
|
{{ strtoupper(substr($tenant->full_name, 0, 1)) }}
{{ $tenant->full_name }}
{{ $tenant->email ?? 'N/A' }}
|
{{ $tenant->phone }}
{{ $tenant->email ?? 'No email' }}
|
@if($tenant->activeLease) Active @else None @endif |
@if($tenant->activeLease)
{{ $tenant->activeLease->property->title ?? 'N/A' }}
{{ $tenant->activeLease->property->address ?? 'N/A' }}
@else
No active lease
@endif
|
|
|
No tenants found Create your first tenant to get started |
||||