Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

133 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

HelloMed Logo

HelloMed

A Comprehensive, State-of-the-Art Hospital Management & Digital Health Platform

Laravel PHP MySQL Ollama License: Proprietary


๐Ÿ“‘ Table of Contents


๐Ÿฅ About HelloMed

Vision & Mission

HelloMed is a modern, full-stack hospital management system and digital health platform designed to bridge the gap between patients and healthcare providers. At the heart of this experience is a Local, Privacy-First AI Health Assistant that intelligently guides patients through symptom checking, provides step-by-step website navigation, and surfaces relevant doctors and articles. Beyond AI-driven guidance, HelloMed provides a seamless experience for patients to book appointments (both online and offline), order medicines, request emergency ambulances, and read health articles. Simultaneously, it gives hospital staff, doctors, and administrators powerful, centralized tools to manage daily operations, financials, and inventory.

The Aesthetic

Developed with a clean, premium teal-and-white aesthetic, HelloMed focuses heavily on user experience, performance, accessibility, and cutting-edge local AI integration. Custom CSS variables and strict layout consistency ensure a responsive, native-app feel across all devices.


โœจ State-of-the-Art Features

HelloMed goes significantly beyond standard CRUD operations, implementing advanced, industry-grade workflows:

๐Ÿค– AI Health Assistant

A floating chat widget powered by a locally hosted Mistral LLM via Ollama. No data leaves the server, ensuring strict patient data privacy. Patients often don't know which specific medical department to visit for their symptoms - this AI elegantly solves that issue by analyzing their natural language symptoms and automatically routing them to the correct specialist department, all while maintaining strict medical safety and explicitly avoiding self-diagnosis. Features three distinct modes: symptom checking, general health info, and complete site navigation walkthroughs.

๐Ÿ—บ๏ธ Disease Outbreak Map

A real-time, interactive epidemiological heatmap tracking major infectious diseases (Dengue, Cholera, Tuberculosis, Malaria, Typhoid, COVID-19) across Bangladesh's 64 districts. Powered by live data integration with the WHO Global Health Observatory and Johns Hopkins (disease.sh) APIs, combined with a local population-density distribution model. Features a dynamic CartoCD Leaflet continuous-gradient bubble map with rich tooltips, auto-switching dark/light mode tiles, and zero heavy npm mapping dependencies.

๐Ÿ’ฐ Automated Financial Payout Engine

A centralized financial sync command (app:sync-financials) dynamically calculates Doctor commission cuts (e.g., 95% online, 85% offline) and Hospital profit cuts instantly upon appointment completion. It features smart reopening logic for employee payouts if salaries are adjusted mid-cycle.

๐Ÿ’Š Advanced E-Pharmacy & Geolocation

An integrated medicine catalog with a cart system, digital prescription verification (allowing restricted medicines to be sold only with uploaded proof), and patient geolocation sharing for precise Google Maps delivery routing. Patients can seamlessly add all necessary prescribed medicines to their cart directly from their appointment page or prescription pdf with a single click.

๐Ÿš‘ Real-time Emergency Dispatch

A public-facing emergency ambulance request form with live staff dispatch tracking, status updates, GPS location sharing for precise pinpointing, and zero login barriers for critical situations.

๐Ÿ”” Comprehensive Notification System

Role-based notifications for Patients, Doctors, Pharmacists, Staff, and Admins. Features async polling for unread badges and clickable notification cards with severity indicators (Red/Yellow/Green) for appointments, chats, lab results, prescriptions, and stock warnings.

๐Ÿ“„ Automated Prescriptions & Lab Results

Doctors can digitally write structured prescriptions and request diagnostic tests directly from the consultation panel. The system automatically generates a formatted PDF prescription for the patient, while staff can securely process lab payments and upload diagnostic PDF results directly to the patient's portal for seamless digital delivery.

๐Ÿ“… Google Calendar & OAuth Integration

Seamless two-way integration with Google. Users can link their Google Accounts via secure OAuth to enable Single Sign-On (SSO). Once linked, both Patients and Doctors can opt-in to automatically sync their HelloMed appointments directly to their primary Google Calendar, complete with automated 24-hour and 1-hour email reminders handled natively by Google.


๐Ÿง  AI Integration Deep Dive

The AI Assistant in HelloMed is designed with privacy, accuracy, and absolute determinism at its core. Instead of standard vector-based RAG, it uses a highly controlled architecture to prevent LLM hallucinations and JSON corruption.

Query Modes

  1. Health Mode: Patient describes symptoms โ†’ AI classifies department โ†’ PHP fetches live doctors/articles โ†’ AI responds empathetically mentioning them by name.
  2. Info Mode: "What is X?" queries โ†’ direct exact-match search against diagnostic tests and health articles.
  3. How-To / Navigation Mode: Pre-built step-by-step workflow guides (book appointment, order medicine, view prescription) with real, PHP-generated clickable links.

System Architecture

graph TB
    subgraph "Browser (Patient)"
        A["๐Ÿ’ฌ AI Chat Widget<br/>Floating bubble on all pages"]
        A -->|"POST /api/ai/chat"| B
    end

    subgraph "Laravel Backend"
        B["AiChatController"] --> C["AiChatService"]
        C --> D["Context Builder<br/>(queries DB for doctors, articles, tests)"]
        C --> S["SiteMap Builder<br/>(generates route map + workflow guides)"]
        C --> E["Ollama HTTP Client<br/>localhost:11434"]
        D --> F[(MySQL DB<br/>doctors, articles,<br/>departments, tests)]
        S --> R["Route Registry<br/>(named routes โ†’ URLs + descriptions)"]
        C --> G["Response Parser<br/>(extracts suggestions + links)"]
    end

    subgraph "Ollama (Local)"
        E -->|"POST /api/generate"| H["๐Ÿค– Mistral 7B"]
        H -->|"Streaming JSON"| E
    end

    G --> A
Loading

The Three-Stage RAG Pipeline

sequenceDiagram
    participant P as ๐Ÿง‘ Patient
    participant W as ๐Ÿ’ฌ Chat Widget
    participant L as ๐Ÿ›  Laravel
    participant DB as ๐Ÿ—ƒ MySQL
    participant O as ๐Ÿค– Ollama

    P->>W: "I have severe chest pain" OR "How do I book an appointment?"
    W->>L: POST /api/ai/chat {message, history}
    
    Note over L: Step 1: Classify Intent
    L->>L: Is this a health question<br/>or a website how-to question?
    
    alt Health Question
        Note over L: Step 2a: Build Medical Context
        L->>DB: Query departments, doctors, articles, tests
        DB-->>L: Matching medical data
    else Website How-To
        Note over L: Step 2b: Build Site Context  
        L->>L: Load SiteMap with routes,<br/>workflow guides, nav structure
    end
    
    Note over L: Step 3: Construct Prompt
    L->>L: Build system prompt with:<br/>- Medical data OR site map<br/>- Workflow guides<br/>- Link templates
    
    Note over L: Step 4: Generate Response
    L->>O: POST /api/generate {model, prompt, context}
    O-->>L: Streamed response
    
    Note over L: Step 5: Parse & Assemble UI
    L->>L: Assemble PHP Doctor Cards<br/>(Zero LLM JSON generation risk)
    
    L-->>W: JSON {message, doctors[], articles[],<br/>navigation_steps[]}
    W-->>P: Rendered cards OR step-by-step<br/>guide with clickable links
Loading

Model Recommendations

For optimal performance on local hardware, Mistral 7B is recommended (~4.1GB VRAM, ~3s latency), while Phi3:Mini is supported as an ultra-lightweight fallback for lower-end machines.


๐Ÿ”„ Role-Based Workflows

The platform supports comprehensive, end-to-end workflows tailored for each specific user role.

๐Ÿ‘ค 1. Patient Workflow

  • Onboarding: Register a new account or browse the platform as a guest. (Ambulance requests and AI Chat are available without login).
  • Profile Management: Update personal medical history, allergies, height, weight, and contact information. Incomplete profiles trigger a site-wide reminder banner.
  • Booking Consultations: Filter doctors by department and specialty. Select between online or offline modes. Choose an available date/time slot, proceed to checkout, and verify payment via bKash/Nagad.
  • Online Consultation & Chat: Access the secure meeting link at the scheduled time. Use the integrated appointment chat to message the doctor or upload past medical documents (PDF/JPG) before the session.
  • Post-Consultation: Download the digital prescription PDF generated by the doctor. Click the auto-generated "Buy Medicines" link to instantly add prescribed items to the pharmacy cart.
  • E-Pharmacy Shopping: Browse the medicine catalog, add items to the cart, provide a delivery address (with Google Maps geolocation), and complete the purchase. Track order status in real-time.
  • Diagnostics & Results: View requested lab tests. Once staff uploads the results, download the PDF reports securely.
  • Engagement: Rate doctors and leave feedback after completed appointments. Ask health questions in the public Q&A forum.

๐Ÿ‘จโ€โš•๏ธ 2. Doctor Workflow

  • Profile & Schedule Management: Log into the Doctor Dashboard. Update availability schedules (working days, online vs. offline hours, slot durations) and consultation fees.
  • Appointment Management: View upcoming appointments. Confirm or cancel bookings. Start online consultations by providing a meeting link.
  • Patient Interaction: Chat directly with patients within the appointment panel. Review uploaded patient documents prior to the meeting.
  • Clinical Operations:
    • Prescriptions: Write structured digital prescriptions (Diagnosis, Advice, Follow-up date) and add specific medicines with precise dosages.
    • Lab Tests: Request specific diagnostic tests for the patient directly from the consultation panel.
  • Financial Tracking: View automated commission cuts for every completed appointment in real-time.
  • Outreach & Authority: Write and publish health articles to the public blog to establish authority and attract patients. Answer patient questions in the public Q&A forum.

๐Ÿ‘” 3. Admin Workflow

  • System Oversight: Monitor the high-level /analytics dashboard containing dynamic Chart.js graphs for Hospital Net Profit, Monthly Income vs. Expense, and Payout distributions.
  • Curation & CMS: Manage Departments, Doctors, and Articles. Toggle is_featured flags to dynamically curate and reorganize the public homepage.
  • User Management: Register and manage new hospital staff members, doctors, and pharmacists. Handle role assignments.
  • Financial & Payout Management: Monitor the employee_payouts ledger. Settle pending payouts for doctors and staff. Review detailed audit logs for sensitive financial or status changes.
  • Inventory Oversight: Add new medicines, update pricing, and manage global inventory (including uploading medicine imagery).

๐Ÿš‘ 4. Staff Workflow

  • Walk-in Management: Register new patients arriving at the hospital. Book offline physical appointments on their behalf bypassing the standard patient checkout flow.
  • Emergency Dispatch: Monitor a live feed of incoming emergency ambulance requests. Dispatch vehicles and update real-time statuses for the patient.
  • Diagnostic/Lab Processing: Monitor lab tests requested by doctors. Process physical payments from patients at the counter, conduct the tests, and securely upload the resulting PDF reports to the patient's file.
  • Content Moderation: Review and moderate public article comments and Q&A forum entries to maintain community standards.

๐Ÿ’Š 5. Pharmacist Workflow

  • Inventory Management: Actively monitor medicine stock levels. Update stock quantities, adjust prices, and categorize medicines by group and strength.
  • Order Fulfillment: Review incoming patient E-Pharmacy orders.
  • Prescription Verification: For restricted medicines, open the automatically attached digital prescription PDF to verify the doctor's authorization before approving the sale.
  • Status Management: Explicitly override default order and payment statuses to manage the physical dispatch and delivery lifecycle. Update orders to "Processing", "Dispatched", or "Delivered".

๐ŸŒ 6. Guest Workflow

  • Exploration: Browse all departments, doctor profiles, and public health articles.
  • AI Assistance: Chat with the floating AI Assistant to check symptoms, find doctors, or get site navigation help.
  • Emergency: Use the 1-click Ambulance Request form without needing to create an account.
  • E-Pharmacy Browsing: Search the medicine catalog and view prices (checkout requires login).

๐Ÿ” Role-Based Access Control (RBAC) Matrix

HelloMed employs a strict multi-role system, securing routes, sidebar navigation, and data visibility based on the authenticated user session.

Feature / Module Patient Doctor Pharmacist Staff Admin Guest
Browse Doctors & Articles โœ… โœ… โœ… โœ… โœ… โœ…
Use AI Assistant โœ… โœ… โœ… โœ… โœ… โœ…
Request Ambulance โœ… โœ… โœ… โœ… โœ… โœ…
Book Appointments โœ… โŒ โŒ โœ… (Walk-ins) โŒ โŒ
View Own Prescriptions โœ… โŒ โŒ โŒ โŒ โŒ
Order Medicines โœ… โŒ โŒ โŒ โŒ โŒ
Manage Schedule & Slots โŒ โœ… โŒ โŒ โŒ โŒ
Write Prescriptions โŒ โœ… โŒ โŒ โŒ โŒ
Process Lab Tests โŒ โŒ โŒ โœ… โŒ โŒ
Fulfill Medicine Orders โŒ โŒ โœ… โŒ โŒ โŒ
View Hospital Analytics โŒ โŒ โŒ โŒ โœ… โŒ
Manage System Users โŒ โŒ โŒ โŒ โœ… โŒ

๐Ÿ— Architecture & Design Patterns

The platform follows a monolithic Model-View-Controller (MVC) architecture, greatly enhanced by modern Laravel ecosystem patterns.

Below is a diagram illustrating the typical request lifecycle and how the layers interact:

flowchart TD
    Client([๐ŸŒ Browser / Client]) -->|HTTP Request| Routes[๐Ÿ›ฃ๏ธ routes/web.php]
    Routes --> Middleware{๐Ÿ”’ Auth / Role<br>Middleware}
    Middleware -->|Pass| Controller[๐ŸŽฎ Skinny Controller]
    Middleware -->|Fail| Abort([403 Forbidden])
    
    Controller -->|1. Validates Data| FormRequest[๐Ÿ“‹ Form Request]
    FormRequest -.->|Clean Data| Controller
    
    Controller -->|2. Delegates Business Logic| Service[โš™๏ธ Service Class<br>e.g., AiChatService]
    
    Service -->|3. Queries / Mutates| Model[๐Ÿ“ฆ Eloquent Model]
    Model <--> DB[(๐Ÿ—ƒ๏ธ MySQL Database)]
    
    Service -.->|4. Returns Data| Controller
    Controller -->|5. Passes Data| View[๐ŸŽจ Blade View / JSON]
    View -->|HTML / API Response| Client
Loading
  1. Service Repository Pattern: Core business logic (e.g., AiChatService, AppointmentSlotService, FinancialSyncService) is abstracted away from controllers, ensuring controllers remain "skinny" and focused solely on HTTP request/response lifecycles.
  2. Form Requests: Deep validation logic, authorization checks, and data sanitization are offloaded to dedicated Form Request classes.
  3. Idempotent Migrations: Schema updates utilize defensive checks (Schema::hasColumn) to ensure safe, repeatable migrations in production environments.
  4. State Management: Handled natively via Blade components, keeping JavaScript dependencies to an absolute minimum. Auto-submitting forms manage SSR state filtering.

๐Ÿ’ป Technology Stack

Backend

  • Framework: Laravel 13.x
  • Language: PHP 8.2+
  • Database: MySQL (Relational, ACID-compliant, standard for health data)
  • Security: Laravel Sanctum, built-in CSRF & XSS protection, Password Hashing.

Frontend

  • Templating: Laravel Blade (Server-side rendering for optimal SEO, accessibility, and TTFB performance)
  • Styling: Custom Vanilla CSS with CSS Variables (No external frameworks; bespoke premium design system)
  • Build Tool: Vite (for rapid HMR and asset bundling)
  • Interactivity: Vanilla JavaScript (Lightweight DOM manipulation, dynamic filter submission, SSE streaming)

AI / LLM

  • Runtime: Ollama - Local LLM inference, completely bypassing cloud APIs
  • Model: mistral (7B) - runs entirely on the host machine
  • Architecture: Three-stage deterministic pipeline
  • Privacy: All patient queries stay on-device; HIPAA-compliant concept by default.

๐Ÿ—„๏ธ Database Schema & Relations

The database is highly relational, utilizing Eloquent ORM. Below is a macro-level Entity-Relationship (ER) diagram representing core connections.

erDiagram
    USER ||--o| PATIENT_PROFILE : has
    USER ||--o| DOCTOR : has
    DEPARTMENT ||--o{ DOCTOR : employs
    PATIENT_PROFILE ||--o{ APPOINTMENT : books
    DOCTOR ||--o{ APPOINTMENT : attends
    APPOINTMENT ||--o{ APPOINTMENT_PRESCRIPTION_ITEM : contains
    APPOINTMENT ||--o{ LAB_TEST_REQUEST : requests
    PATIENT_PROFILE ||--o{ MEDICINE_ORDER : places
    MEDICINE_ORDER ||--o{ MEDICINE_ORDER_ITEM : contains
    MEDICINE ||--o{ MEDICINE_ORDER_ITEM : included_in
    USER ||--o{ ARTICLE : authors
    ARTICLE_CATEGORY ||--o{ ARTICLE : categorizes
Loading

๐Ÿ”Œ Module Integrations

HelloMed features tight workflow integration across its core modules. Data and financials naturally flow from the consultation room into the rest of the hospital's ecosystem:

flowchart LR
    Consultation([๐Ÿฉบ Consultation]) -->|Writes Prescription| Pharmacy([๐Ÿ’Š E-Pharmacy])
    Consultation -->|Requests Tests| Labs([๐Ÿ”ฌ Diagnostics / Labs])
    Pharmacy -->|Medicine Sales| Financials([๐Ÿ’ฐ Financial Payouts])
    Labs -->|Test Fees| Financials
    Consultation -->|Consultation Fees| Financials
    Financials -->|Calculates Splits| Admin([๐Ÿ‘” HR / Admin Ledger])
Loading
  • Consultation โžก๏ธ Pharmacy: Doctors write digital prescriptions inside the appointment panel. Patients download the resulting PDF and directly click to order those specific medicines. The Pharmacist verifies the attached prescription PDF during order fulfillment.

    sequenceDiagram
        participant D as ๐Ÿ‘จโ€โš•๏ธ Doctor
        participant S as โš™๏ธ System
        participant P as ๐Ÿง‘ Patient
        participant Rx as ๐Ÿ’Š Pharmacist
    
        D->>S: Writes Digital Prescription
        S-->>P: Generates PDF & 'Buy Medicines' link
        P->>S: Clicks Buy -> Adds to Cart -> Checkout
        S-->>Rx: Notifies Pharmacist of New Order
        Rx->>S: Opens Order & Views attached PDF
        Rx->>Rx: Verifies Doctor's signature & validity
        Rx->>S: Approves & Dispatches Order
        S-->>P: Status updated to 'Dispatched'
    
    Loading
  • Consultation โžก๏ธ Labs: Doctors request specific diagnostic tests. Hospital Staff process the payment and upload the PDF results. Both Patient and Doctor receive notifications and can download the results securely.

  • Financials โžก๏ธ HR/Admin: Paid appointments and medicine sales trigger the sync-financials job, calculating exact hospital profit cuts and logging amounts into the employee_payouts ledger automatically for payroll processing.

    sequenceDiagram
        participant P as ๐Ÿง‘ Patient
        participant DB as ๐Ÿ—ƒ๏ธ Database
        participant Cron as ๐Ÿ”„ sync-financials
        participant A as ๐Ÿ‘” Admin
    
        P->>DB: Pays เงณ1000 for Online Appointment
        DB->>DB: Status -> 'completed'
        Cron->>DB: Scans for unsynced completed appts
        Note over Cron: Applies 95% Doctor Cut
        Cron->>DB: Logs เงณ950 to Employee Payouts
        Cron->>DB: Logs เงณ50 to Hospital Net Profit
        Cron->>DB: Marks Appt as 'financials_synced'
        A->>DB: Views Analytics Dashboard & Payouts Ledger
    
    Loading

๐Ÿ›ก๏ธ Security & Industry Standards

  • Authentication & Authorization: Built-in Laravel Auth coupled with strict Route Middleware checks (role:admin,staff, etc.).
  • Data Integrity: Deep relational database constraints, cascading deletes where appropriate, and strict PHP-backed status enums.
  • Audit Logging: Sensitive operations (financial adjustments, status overrides, user role changes) are securely logged in the audit_logs table for admin review and compliance.
  • Payment Lifecycle Security: Inventory commit/release safeguards ensure medicine stock isn't permanently depleted until a payment is fully verified.
  • Protected File Uploads: Prescriptions and lab results are stored securely in protected storage directories and served strictly via authenticated routes.

๐Ÿš€ Getting Started (Local Setup)

Prerequisites

  • PHP 8.2 or higher
  • Composer
  • Node.js & NPM
  • MySQL Server

Installation Steps

  1. Clone the repository

    git clone https://github.com/AbirHasanArko/HelloMed.git
    cd hellomed/hellomed-laravel
  2. Install Dependencies

    composer install
    npm install
  3. Environment & Keys

    cp .env.example .env
    php artisan key:generate
  4. Database Setup Create an empty database named hellomed in your MySQL instance. Ensure .env has DB_CONNECTION=mysql.

    # Migrate tables and seed the database with demo data
    php artisan migrate:fresh --seed
    
    # Link storage for image uploads
    php artisan storage:link
  5. Run the Application Open two terminal windows:

    # Terminal 1: Boot backend server
    php artisan serve
    
    # Terminal 2: Compile frontend assets
    npm run dev

Ollama AI Setup

The AI assistant requires Ollama running locally.

# Pull the model
ollama pull mistral

# Start the Ollama server (runs on localhost:11434 by default)
ollama serve          

(If Ollama is not running, the platform gracefully disables the chat widget with a friendly offline message).


๐Ÿ‘ฅ Seeded Data Overview

Running the DatabaseSeeder populates a complete, demo-ready environment instantly:

Roles & Accounts (Password: password123)

  • Admin: admin@hellomed.test
  • Staff: staff@hellomed.test
  • Pharmacist: pharmacist@hellomed.test
  • Doctor: doctor@hellomed.test (plus specific doctors like nazmul@hellomed.test)
  • Patient: patient@hellomed.test

Initial Data Sandbox Includes:

  • 8 Departments (Cardiology, Orthopedics, Dental, Psychiatry, Neurology, Pediatrics, Dermatology, Oncology).
  • 8 Specialist Doctors with detailed bios, varying consultation fees, and online/offline availability schedules.
  • 3 Article Categories containing pre-written, published health articles.
  • 10+ Verified Medicines spanning tablets, capsules, and syrups with simulated stock, prices, and placeholder imagery.
  • Diagnostic Tests Catalog (via AvailableTestSeeder).
  • Pre-populated Workflows: Fully booked appointments, written prescriptions, lab tests, and Q&A entries to instantly demonstrate functionality without needing manual data entry.

๐Ÿš€ Future Roadmap & Improvement Plan

HelloMed is continuously evolving. The following experimental, "astonishing" features are planned for future iterations to further cement the platform as a state-of-the-art digital health solution:

  1. ๐Ÿ‘๏ธ AI-Powered Skin & Symptom Analyzer (Local Vision AI)

    • Concept: Leverage local multimodal LLMs (like LLaVA via Ollama) to allow patients to upload photos of skin lesions or rashes directly in the AI Chat.
    • Value: The local vision model securely analyzes the image and triages the urgency, routing them directly to available Dermatologists on the platform without transmitting sensitive imagery to cloud providers.
  2. ๐ŸŽ™๏ธ Ambient AI Clinical Notes for Doctors

    • Concept: A dictation microphone inside the doctor's appointment panel. Doctors speak naturally during offline consultations, and local AI (Whisper + Mistral) transcribes and structures the conversation.
    • Value: Automatically extracts symptoms, diagnosis, prescribed medicines, and requested lab tests directly into the digital prescription form with zero typing required.
  3. ๐Ÿ—บ๏ธ 3D Isometric Hospital Wayfinding

    • Concept: An interactive, lightweight Three.js 3D map of the hospital interior attached to physical appointments.
    • Value: Draws an animated, glowing path from the hospital lobby to the specific department or doctor's room, solving the common pain point of indoor navigation in large medical complexes.
  4. ๐Ÿ”— QR-Code Verified "Tamper-Proof" Prescriptions

    • Concept: Cryptographically hash generated digital prescriptions and embed a unique verification QR code on the PDF.
    • Value: Allows third-party external pharmacies to instantly scan and verify the authenticity of a HelloMed prescription via a secure public validation page, preventing medical forgery.
  5. ๐Ÿฉธ Real-Time IoT Vitals Dashboard (ICU Monitor)

    • Concept: Implement high-frequency WebSocket streaming of simulated inpatient vitals (Heart Rate, SpO2, Blood Pressure) to the staff dashboard via smooth Chart.js animations.
    • Value: Demonstrates enterprise-scale IoT capability with automated severity alerts pinging the on-call doctor if vitals drop into critical zones.

๐Ÿ”— API Documentation & Links

  • Detailed API Documentation: Check out the API_DOCUMENTATION.md file for comprehensive details on the AI Health Assistant JSON endpoints, including exact Request/Response schemas and authentication methods.
  • Web Routes: All user-facing and backend SSR routes are organized logically in routes/web.php grouped by applied middleware.
  • License: See the LICENSE file for proprietary usage restrictions and guidelines.

Developed with โค๏ธ for the future of digital healthcare.

Developed by Abir Hasan Arko


About

๐Ÿฅ๐ŸŒ Enterprise-grade Hospital Management & Digital Health Platform with telemedicine, AI health assistant, appointment booking, e-pharmacy, ambulance services, digital prescriptions, analytics, and role-based healthcare management.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages