@extends('layouts.dashboard') @section('title', 'Patient Dashboard') @section('sidebar_label', 'Patient Home') @section('sidebar') My Care Appointments Medications Community @endsection @section('content') @php $careTeam = [ ['name' => 'Dr. Arjun Mehta', 'role' => 'Rheumatologist', 'status' => 'Available'], ['name' => 'Nina Kapoor', 'role' => 'Physiotherapist', 'status' => 'Away'], ['name' => 'Rahul Sharma', 'role' => 'Care Navigator', 'status' => 'Available'], ]; $medications = [ ['name' => 'Methotrexate', 'dose' => '15 mg weekly', 'time' => 'Saturday, after lunch', 'status' => 'Scheduled'], ['name' => 'Prednisolone', 'dose' => '5 mg daily', 'time' => '08:00 AM', 'status' => 'Taken'], ['name' => 'Calcium + Vitamin D', 'dose' => '1 tab daily', 'time' => '08:30 PM', 'status' => 'Reminder on'], ]; $goals = [ ['label' => 'Stretching Routine', 'progress' => 70], ['label' => 'Daily Steps', 'progress' => 55], ['label' => 'Hydration', 'progress' => 80], ]; @endphp

Welcome back

{{ auth()->user()?->name ?? 'Patient' }}

Here’s a quick view of your care plan and next steps.

Next visit

Mon, 12 Jan • 10:00 AM

Video with Dr. Arjun Mehta

Reminder set

Pain log

3/10

Trending lower this week

Exercises

5/7

Completed this week

Support

Need help with flare-ups?

Download the flare response checklist.

Today’s care steps

Small steps toward recovery

3 of 5 done

Medications

Scheduled reminders

@foreach ($medications as $med)

{{ $med['name'] }}

{{ $med['dose'] }}

{{ $med['status'] }}

{{ $med['time'] }}

@endforeach

Care team

@foreach ($careTeam as $member)

{{ $member['name'] }}

{{ $member['role'] }}

{{ $member['status'] }}
@endforeach

Goals

Keep steady progress

@foreach ($goals as $goal)

{{ $goal['label'] }}

{{ $goal['progress'] }}%
@endforeach

Community

Join Saturday support circle

Meet others living with myositis and share tips.

@include('partials.dashboard-events')
@endsection