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

Dashboard

@if(auth()->user()->role === 'patient')

Patient Portal

Manage your appointments, prescriptions and medical records.

Open Patient Portal
@elseif(auth()->user()->role === 'doctor')

Doctor Portal

View your schedule and manage your doctor profile.

Open Doctor Portal
@else
Doctors

{{ $doctors }}

Patients

{{ $patients }}

Specialties

{{ $specialties }}

Admins

{{ $admins }}

Admin Modules
@endif @endsection