@php $tenants = $this->getTenants(); @endphp @if ($tenants->isEmpty()) {{-- Empty state — enterprise-grade --}}
{{-- Workspace context badge --}}
{{ $this->workspace->name }}
{{-- Icon --}}

No managed tenants yet

Connect your first Microsoft Entra tenant to start managing inventory, backups, drift detection, and policies.

@else {{-- Tenant list --}}
{{-- Header row --}}
{{ $this->workspace->name }}
· {{ $tenants->count() }} {{ \Illuminate\Support\Str::plural('tenant', $tenants->count()) }}
Choose tenant
{{-- Tenant cards --}}
@foreach ($tenants as $tenant) @endforeach
{{-- Footer links --}}
@endif