Doctors
img
@if ($doctor->profile_photo_url) Doctor Photo @else {!! $doctor->getInitialsAvatar() !!} @endif
{{ $doctor->name }}
{{ $doctor->doctor->specialization ?? ($doctor->doctorProfile->specialization ?? 'N/A') }}
{{ $doctor->doctor->qualifications ?? 'N/A' }}
@if ($primaryClinic)

Clinic : {{ $primaryClinic->name }}

@endif {{ ucfirst($doctor->status) }}
@if ($primaryClinic && $primaryClinic->pivot)

Consultation Charge

₹{{ number_format($primaryClinic->pivot->in_person_fee ?? 0, 2) }} / {{ $primaryClinic->pivot->in_person_duration ?? 30 }} Min
@endif Book Appointment
Availability
@foreach (range(1, 5) as $day)
@foreach (['11:30 AM - 12:30 PM', '12:30 PM - 01:30 PM', '02:30 PM - 03:30 PM'] as $time) {{ $time }} @endforeach
@endforeach
Short Bio

{{ $doctor->doctor->bio ?? ($doctor->doctorProfile->bio ?? 'No biography available.') }}

@if ( ($doctor->doctor->bio ?? $doctor->doctorProfile->bio) && strlen($doctor->doctor->bio ?? $doctor->doctorProfile->bio) > 200) @endif
Education Information
    @forelse($educations as $education)
  • {{ $education->institution }} - {{ $education->degree }}
    @if ($education->field_of_study)

    {{ $education->field_of_study }}

    @endif

    {{ $education->start_year }} - @if ($education->is_current) Present @else {{ $education->end_year }} @endif

    @if ($education->description)

    {{ $education->description }}

    @endif
  • @empty
  • No education information available.

  • @endforelse
Work Experience
    @forelse($experiences as $experience)
  • {{ $experience->position }} at {{ $experience->organization }}

    {{ $experience->start_date->format('M Y') }} - @if ($experience->is_current) Present @else {{ $experience->end_date->format('M Y') }} @endif

    @if ($experience->description)

    {{ $experience->description }}

    @endif
  • @empty
  • No work experience information available.

  • @endforelse
@if ($clinics->isNotEmpty())
Associated Clinics
@foreach ($clinics as $clinic) @endforeach
Clinic Name Status Services Fees
{{ $clinic->name }} @if ($clinic->pivot->is_primary) Primary @endif {{ ucfirst($clinic->pivot->status) }} @if ($clinic->pivot->offers_in_person) In-Person @endif @if ($clinic->pivot->offers_video) Video @endif @if ($clinic->pivot->offers_home_visit) Home Visit @endif @if ($clinic->pivot->offers_in_person) ₹{{ number_format($clinic->pivot->in_person_fee, 2) }} ({{ $clinic->pivot->in_person_duration }} min)
@endif @if ($clinic->pivot->offers_video) ₹{{ number_format($clinic->pivot->video_fee, 2) }} ({{ $clinic->pivot->video_duration }} min)
@endif @if ($clinic->pivot->offers_home_visit) ₹{{ number_format($clinic->pivot->home_visit_fee, 2) }} ({{ $clinic->pivot->home_visit_duration }} min) @endif
@endif
Certifications & Licenses
License: {{ $doctor->doctor->license_number ?? ($doctor->doctorProfile->license_number ?? 'N/A') }}
@if ($doctor->doctorProfile && $doctor->doctorProfile->license_state)

State: {{ $doctor->doctorProfile->license_state }}

@endif @if ($doctor->doctorProfile && $doctor->doctorProfile->license_valid_until)

Valid Until: {{ $doctor->doctorProfile->license_valid_until->format('M d, Y') }}

@endif
@if ($doctor->doctorProfile && $doctor->doctorProfile->certificates) @foreach ($doctor->doctorProfile->certificates as $certificate)
{{ $certificate['name'] ?? 'Certificate' }}
@if (isset($certificate['date']))

Date: {{ $certificate['date'] }}

@endif @if (isset($certificate['issuer']))

Issuer: {{ $certificate['issuer'] }}

@endif
@endforeach @endif
About
Medical License Number

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

Phone Number

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

Email Address

{{ $doctor->email }}

Years of Experience

{{ $doctor->doctor->experience_years ?? ($doctor->doctorProfile->years_of_experience ?? '0') }} Years

@if ($doctor->doctorProfile && $doctor->doctorProfile->languages_spoken)
Languages Spoken

{{ implode(', ', $doctor->doctorProfile->languages_spoken) }}

@endif @if ($doctor->doctorProfile && $doctor->doctorProfile->sub_specializations)
Sub-specializations

{{ implode(', ', $doctor->doctorProfile->sub_specializations) }}

@endif @if ($doctor->doctorProfile)
Accepts New Patients

{{ $doctor->doctorProfile->accepts_new_patients ? 'Yes' : 'No' }}

@endif @if ($doctor->doctorProfile && $doctor->doctorProfile->verification_status)
Verification Status

{{ $doctor->doctorProfile->verification_status }}

@if ($doctor->doctorProfile->verified_at) Verified on: {{ $doctor->doctorProfile->verified_at->format('M d, Y') }} @endif
@endif
@if ($doctor->doctorProfile && ($doctor->doctorProfile->rating || $doctor->doctorProfile->reviews_count))
Ratings & Reviews

{{ number_format($doctor->doctorProfile->rating, 1) }}

@for ($i = 1; $i <= 5; $i++) @if ($i <= floor($doctor->doctorProfile->rating)) @elseif($i - 0.5 <= $doctor->doctorProfile->rating) @else @endif @endfor

{{ $doctor->doctorProfile->reviews_count }} reviews

View All Reviews
@endif
@push('scripts') @endpush