@extends('layouts.portal') @section('content')

Platform Users & Tenants

All registered users and practice tenants active in the database.

@forelse($tenants as $index => $t)
Registered Psychologist

{{ $t->name }}

🌐 Domain: {{ $t->custom_domain }}
🆔 ERP Doctor ID: {{ $t->erp_doctor_id ?? 'N/A' }}
View Website 👁️ Admin Panel ⚙️
@empty

No registered users or tenants found in database.

@endforelse
@if(count($tenants) > 3)
@endif
@endsection