@php $metrics = [ [ 'label' => 'Active Patients', 'value' => '248', 'note' => '+12% vs last week', 'tone' => 'bg-blue-50 text-blue-600', 'noteClass' => 'text-status-good', 'icon' => 'team', ], [ 'label' => 'Assessments Due', 'value' => '32', 'note' => 'Due this week', 'tone' => 'bg-brand-orange-muted text-brand-orange', 'noteClass' => 'text-brand-orange', 'icon' => 'assessment', ], [ 'label' => 'Alerts', 'value' => '12', 'note' => 'Needs attention', 'tone' => 'bg-status-critical/10 text-status-critical', 'noteClass' => 'text-status-critical', 'icon' => 'bell', ], [ 'label' => 'Care Plans', 'value' => '187', 'note' => 'On track', 'tone' => 'bg-status-good/10 text-status-good', 'noteClass' => 'text-status-good', 'icon' => 'clipboard', ], ]; $alerts = [ ['initials' => 'AS', 'name' => 'Alex Smith', 'detail' => 'PHQ-9 score increased', 'time' => '2h ago', 'tone' => 'bg-status-critical/10 text-status-critical'], ['initials' => 'JW', 'name' => 'Jamie Williams', 'detail' => 'Missed assessment', 'time' => '5h ago', 'tone' => 'bg-sky-100 text-sky-700'], ['initials' => 'MC', 'name' => 'Maria Chen', 'detail' => 'Safety plan overdue', 'time' => '1d ago', 'tone' => 'bg-brand-orange-muted text-brand-orange'], ]; $valueProps = [ ['title' => 'HIPAA-aligned', 'body' => 'Secure & Compliant', 'icon' => 'shield', 'tone' => 'bg-accent-muted text-blue-600'], ['title' => 'Team-based', 'body' => 'Collaborative', 'icon' => 'team', 'tone' => 'bg-accent-muted text-blue-600'], ['title' => 'Data-driven', 'body' => 'Better Outcomes', 'icon' => 'chart', 'tone' => 'bg-accent-muted text-accent'], ]; $featureCards = [ ['title' => 'Live Oversight', 'body' => 'Real-time dashboards and alerts help you act before issues become critical.', 'icon' => 'monitor', 'tone' => 'bg-accent-muted text-blue-600', 'arrow' => 'text-blue-600'], ['title' => 'Team Collaboration', 'body' => 'Coordinate care, share insights, and keep everyone aligned on patient goals.', 'icon' => 'team', 'tone' => 'bg-green-100 text-green-700', 'arrow' => 'text-status-good'], ['title' => 'CoCM Registry', 'body' => 'Keep patients, assessments, care plans, and outcomes organized in one place.', 'icon' => 'document', 'tone' => 'bg-violet-100 text-violet-700', 'arrow' => 'text-violet-700'], ['title' => 'Billing Readiness', 'body' => 'Track documentation, consent, and time to stay audit-ready every month.', 'icon' => 'dollar', 'tone' => 'bg-brand-orange-muted text-brand-orange', 'arrow' => 'text-brand-orange'], ]; $sidebar = ['Overview', 'Patients', 'Assessments', 'Alerts', 'Care Teams', 'Reports', 'Billing', 'Settings']; @endphp Command Center - Meduvo Health @vite(['resources/css/app.css', 'resources/js/app.js'])
Meduvo Health
@include('public.partials.command-center-icon', ['icon' => 'team']) Collaborative Care. Better Outcomes.

Your Command Center for Collaborative Care (CoCM)

Real-time oversight, proactive alerts, and seamless workflows so your team can focus on what matters most: better patient outcomes.

@foreach ($valueProps as $prop)
@include('public.partials.command-center-icon', ['icon' => $prop['icon']]) {{ $prop['title'] }} {{ $prop['body'] }}
@endforeach

Overview

May 12 - May 18, 2026 @include('public.partials.command-center-icon', ['icon' => 'bell']) 12
@foreach ($metrics as $metric)
@include('public.partials.command-center-icon', ['icon' => $metric['icon']])

{{ $metric['label'] }}

{{ $metric['value'] }}

{{ $metric['note'] }}

@endforeach

Recent Alerts

View all
@foreach ($alerts as $alert)
{{ $alert['initials'] }} {{ $alert['name'] }} {{ $alert['detail'] }} {{ $alert['time'] }}
@endforeach

Program Overview

Last 30 days

Assessments Completed

462

+18%

Response Rate

76%

+8%

Remission Rate

68%

+12%

@foreach ($featureCards as $card)
@include('public.partials.command-center-icon', ['icon' => $card['icon']]) {{ $card['title'] }} {{ $card['body'] }}
@endforeach