@extends('layouts.frontend') @section('title', 'Find Doctors') @section('description', 'Search and find the best doctors near you. Browse by specialty, hospital, or location.') @section('content')

Find Doctors

Browse our network of qualified medical professionals

Showing {{ $doctors->count() }} of {{ $doctors->total() }} doctors

@forelse($doctors as $doctor)
@if($doctor->image) {{ $doctor->name }} @else
@endif

{{ $doctor->name }}

{{ $doctor->specialties ? implode(', ', (array)$doctor->specialties) : 'General' }}

@if($doctor->hospital)

{{ $doctor->hospital->name }}

@endif
${{ number_format($doctor->fee, 0) }} /visit
Book Now
@empty

No doctors found matching your criteria.

Clear filters
@endforelse
@if($doctors->hasPages())
{{ $doctors->links() }}
@endif
@endsection