{{ Auth::user()->name }}
{{ $doctor->specialization ?? 'Specialization' }}
@if (count($educations) > 0) {{ $educations->first()->degree ?? 'Medical Degree' }} @else Medical Professional @endif

Employee ID : DR-{{ str_pad(Auth::id(), 4, '0', STR_PAD_LEFT) }}

@if ($doctor->verification_status === 'verified') Verified @elseif($doctor->verification_status === 'pending') Pending @else Not Verified @endif

Years of Experience

{{ $doctor->years_of_experience ?? '0' }} Years
Book Appointment
About Me

{{ $doctor->bio ?? 'No bio information available.' }}

Education Information
@if (count($educations) > 0)
    @foreach ($educations as $education)
  • {{ $education->institution ?? 'N/A' }} - {{ $education->degree ?? 'N/A' }}

    {{ $education->start_year ?? 'N/A' }} - {{ $education->end_year ?? 'Present' }}

  • @endforeach
@else

No education information available.

@endif
@if (count($experiences) > 0)
Professional Experience
    @foreach ($experiences as $experience)
  • {{ $experience->position ?? 'N/A' }}
    @if ($experience->organization)
    {{ $experience->organization }}
    @endif

    @if ($experience->start_date) {{ \Carbon\Carbon::parse($experience->start_date)->format('M Y') }} - @if (empty($experience->end_date)) Present @else {{ \Carbon\Carbon::parse($experience->end_date)->format('M Y') }} @endif @else N/A @endif

  • @endforeach
@endif @if (count($uploadedCertificates) > 0)
Certifications
@foreach ($uploadedCertificates as $certificate)
{{ $certificate['name'] }}

Uploaded: {{ \Carbon\Carbon::parse($certificate['uploaded_at'])->diffForHumans() }}

View Certificate
@endforeach
@endif
About
Medical License Number

{{ $doctor->license_number ?? 'N/A' }}

Phone Number

{{ Auth::user()->phone_number ?? 'N/A' }}

Email Address

{{ Auth::user()->email }}

Years of Experience

{{ $doctor->years_of_experience ?? '0' }} Years

Verification Status

@if ($doctor->verification_status === 'verified') Verified @if ($doctor->verified_at) Verified on: {{ $doctor->verified_at->format('M d, Y') }} @endif @elseif($doctor->verification_status === 'pending') Pending Verification @else Not Submitted @endif

Employee ID

DR-{{ str_pad(Auth::id(), 4, '0', STR_PAD_LEFT) }}