{{ $totalPatients }}
{{ $totalBusinesses }}
Share these links with potential patients and businesses to earn commissions.
Share this link with potential patients for {{ $patientData['name'] }}.
Share this link with potential businesses.
Your agent account is pending approval. You'll be able to generate referral links once approved.
You haven't referred any patients yet.
Use your patient referral links to invite patients to join.
| Patient | Status | Joined | Subscription |
|---|---|---|---|
|
{{ $patient->name }}
{{ $patient->email }}
|
{{ ucfirst(str_replace('_', ' ', $patient->status)) }} | {{ $patient->created_at->format('M d, Y') }} | @if($patient->subscriptions->count() > 0) {{ ucfirst($patient->subscriptions->first()->status) }} @else No subscription @endif |
You haven't referred any businesses yet.
Use your business referral link to invite businesses to join.
| Business | Contact | Joined | Plans |
|---|---|---|---|
|
{{ $business->name }}
{{ $business->email }}
|
@if($business->users->count() > 0)
{{ $business->users->first()->name }}
{{ $business->users->first()->email }}
@else
No admin user
@endif
|
{{ $business->created_at->format('M d, Y') }} |
@if($business->plans->count() > 0)
{{ $business->plans->count() }} active plans
{{ $business->plans->sum('plan_quantity') }} total seats
@else
No active plans
@endif
|