@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($doctors->isNotEmpty())
@foreach($doctors as $doctor)
Doctor Image
@if($doctor->gender === 'Male') @else @endif
{{ $doctor->profession }}

Dr. {{ $doctor->name }}

View Details →
@endforeach
{{ $doctors->appends(request()->query())->links('vendor.pagination.tailwind') }}
@else

No doctors found matching your search criteria.

@endif
@endsection