{{ $totalUsers }}
{{ $totalDoctors }}
{{ $totalPatients }}
{{ $totalConsultations }}
{{ $totalPrescriptions }}
{{ $totalActiveSubscriptions }}
{{ $totalExpiredSubscriptions }}
{{ $totalExpiringSubscriptions }}
{{ $pendingMedicationOrders }}
{{ $totalBusinessPlans ?? 0 }}
{{ $selfPaymentsThisMonth ?? 0 }}
| User | Plan | Status | Date | Action |
|---|---|---|---|---|
| {{ $subscription->user->name }} | {{ $subscription->plan->name }} | {{ ucfirst($subscription->status) }} | {{ $subscription->created_at->diffForHumans() }} | View |
No recent subscriptions found.
@endif| Order # | Patient | Status | Date | Action |
|---|---|---|---|---|
| {{ $order->id }} | {{ $order->patient->name ?? 'N/A' }} | {{ ucfirst($order->status) }} | {{ $order->created_at->diffForHumans() }} | View |
No recent medication orders found.
@endif| User | Plan | Expired On | Action |
|---|---|---|---|
| {{ $subscription->user->name }} | {{ $subscription->plan->name }} | {{ $subscription->ends_at->diffForHumans() }} | View |
No expired subscriptions found.
@endif| User | Plan | Expires In | Action |
|---|---|---|---|
| {{ $subscription->user->name }} | {{ $subscription->plan->name }} | {{ $subscription->ends_at->diffForHumans() }} | View |
No subscriptions expiring in the next 7 days.
@endif| Patient | Doctor | Status | Scheduled | Action |
|---|---|---|---|---|
| {{ $consultation->patient->name ?? 'N/A' }} | {{ $consultation->doctor->name ?? 'Not Assigned' }} | {{ ucfirst($consultation->status) }} | {{ $consultation->formatDate('scheduled_at', 'M d, Y g:i A') }} | View |
No recent consultations found.
@endif| Patient | Type | Status | Date | Action |
|---|---|---|---|---|
| {{ $questionnaire->user->name ?? 'N/A' }} | {{ $questionnaire->treatment ? $questionnaire->treatment->name : 'General' }} | {{ ucfirst($questionnaire->status) }} | {{ $questionnaire->created_at->format('M d, Y') }} | View |
No recent medical questionnaires found.
@endif| Patient | Condition | Status | Reported | Action |
|---|---|---|---|---|
| {{ $condition->patient->name }} | {{ $condition->condition_name }} | {{ ucfirst($condition->status) }} | {{ $condition->created_at->format('M d, Y') }} | View Patient |
No recent patient medical conditions found.
@endif| Patient | Allergen | Severity | Reaction | Action |
|---|---|---|---|---|
| {{ $allergy->user->name ?? 'N/A' }} | {{ $allergy->allergen }} | {{ ucfirst(str_replace('_', ' ', $allergy->severity)) }} | {{ $allergy->reaction }} | View Patient |
No recent patient allergies found.
@endif