@php $tenants = $this->getTenants(); $workspace = app(\App\Support\Workspaces\WorkspaceContext::class)->currentWorkspace(); @endphp @if ($tenants->isEmpty()) {{-- Empty state --}}
@if ($workspace)
{{ $workspace->name }}
@endif

No tenants available

There are no active tenants in this workspace yet. Add one via onboarding, or switch to a different workspace.

@else {{-- Tenant list --}}
{{-- Header row --}}
@if ($workspace)
{{ $workspace->name }}
@endif · {{ $tenants->count() }} {{ \Illuminate\Support\Str::plural('tenant', $tenants->count()) }}

Select a tenant to continue.

{{-- Tenant cards --}}
@foreach ($tenants as $tenant) @endforeach
{{-- Footer links --}}
@endif