@extends('layouts.app') @section('title', 'Doctor Details') @section('content') @php $primarySpecialization = $doctor->specializations->firstWhere('pivot.type', 'Primary'); $subSpecializations = $doctor->specializations->where('pivot.type', 'Secondary'); @endphp
@if ($doctor->image && $doctor->image->file && $doctor->image->file->image_path) {{ $doctor->image->alt_text ?? $doctor->name }} @else Default Doctor @endif
{{ $doctor->name }}
{{ $primarySpecialization->specialization_name }}
Sub-specialization
{{ $subSpecializations->pluck('specialization_name')->join(', ') }}
Language
{{ $doctor->languages->pluck('language')->join(', ') }}
Clinic Room Number
{{ $doctor->clinic_room_number }}
Clinic Hours
{{ $doctor->clinic_hours }}
Phone Number
{{ $doctor->phone_num }}
Telephone Number
{{ $doctor->telephone_num }}

Book an Appointment with {{ $doctor->name }}

Appointment
{{ $primarySpecialization->specialization_name }}
{{ $doctor->name }}
BOOK YOUR APPOINTMENT

Easily schedule a consultation with our trusted doctors. Whether you need routine check-ups, specialized care, or professional medical advice, booking an appointment ensures you receive timely and personalized healthcare.

Doctor consultation

Find Another Doctor

Not the right match? Explore our full list of qualified specialists to find a doctor who best fits your healthcare needs.

@endsection