@extends('admin.layouts.app')
@section('title','Doctor Details')
@section('header')
Doctor Details
@endsection
@section('content')
Personal Information
| First Name |
{{ $doctor->first_name }} |
| Middle Name |
{{ $doctor->middle_name }} |
| Last Name |
{{ $doctor->last_name }} |
| Gender |
{{ $doctor->gender }} |
| Date of Birth |
{{ $doctor->date_of_birth?->format('Y-m-d') }} |
| National ID |
{{ $doctor->national_id }} |
| Phone |
{{ $doctor->phone }} |
| Email |
{{ $doctor->email }} |
| Address |
{{ $doctor->address }} |
Professional Information
| Department |
{{ $doctor->department?->name }} |
| Specialty |
{{ $doctor->specialty?->name }} |
| License Number |
{{ $doctor->license_number }} |
| Qualification |
{{ $doctor->qualification }} |
| Experience |
{{ $doctor->experience_years }} Years |
| Consultation Fee |
{{ number_format($doctor->consultation_fee, 2) }} |
| Joining Date |
{{ $doctor->joining_date?->format('Y-m-d') }} |
| Status |
{{ $doctor->status ? 'Active' : 'Inactive' }}
|
{!! nl2br(e($doctor->notes)) !!}
Edit
Back
@endsection