@include('frontend.layouts.patient-sidebar')

Appointment

Tests

Available Doctors with their Specialization

@if (isset($doctors) && $doctors->isNotEmpty()) @foreach ($doctors as $index => $doctor)
{{ $doctor->name }}'s Profile

{{ $doctor->name }}

{{ $doctor->position }}

{{ $doctor->description }}

@endforeach @else

No doctors available for the selected tests.

@endif
Doctor Profile Image

{{ session('doctor_name') ?? 'Please Choose a Doctor' }}

{{ session('doctor_position') ?? '' }}

@csrf