@extends('layouts.dashboard') @section('title', __('messages.tenants')) @section('header', 'Tenant Management') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')

Registered Tenants

Manage all tenant accounts and information

Add Tenant
@forelse($tenants as $tenant) @empty @endforelse
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
@csrf @method('DELETE')

No tenants found

Create your first tenant to get started

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