@extends('layouts.main-app') @section('title', 'Find a Doctor') @section('content') @include('layouts.navbar', [ 'headerTitle' => '', 'headerDescription' => '', ])
Doctors

Meet Our Specialists

← Back
Find A Doctor

Easily Find the Right Doctor for Your Needs

@if ($mainDoctor)

Searched Doctor

Doctor Image
@if ($mainDoctor->gender === 'Male') @else @endif
{{ $mainDoctor->profession }} {{ $mainDoctor->language }}

Dr. {{ $mainDoctor->name }}

View Details →
@endif @if ($suggestions->isNotEmpty())

Similar Specialists

@foreach ($suggestions as $doctor)
Doctor Image
@if ($doctor->gender === 'Male') @else @endif
{{ $doctor->profession }} {{ $doctor->language }}

Dr. {{ $doctor->name }}

View Details →
@endforeach
@if ($suggestions->hasPages())
{{ $suggestions->links('vendor.pagination.tailwind') }}
@endif @endif
@endsection