@extends('layouts.mail')
@section('title', 'New Patient Created')
@section('content')
Hi Dr. {{ $adminDoctor->name }},
A new patient profile has been successfully created under your clinic on PRED Care.
Patient Details:
- Name: {{ $patient->user->name }}
- Patient ID: {{ $patient->id }}
- Mobile: {{ $patient->phone ?? 'N/A' }}
- Email: {{ $patient->user->email }}
- Gender: {{ ucfirst($patient->gender) ?? 'N/A' }}
- Date of Birth: {{ $patient->date_of_birth ? \Carbon\Carbon::parse($patient->date_of_birth)->format('d/m/Y') : 'N/A' }}
- Created By: {{ $createdBy->name }}
- Created On: {{ $createdAt->format('d/m/Y H:i') }}
You can now view and manage this patient's EMR, prescriptions, appointments, and more through your dashboard.
Login to PRED Care
Useful Links:
Help Center
Contact Support
Thank you,
The PRED Care Team
@endsection