@if($doctors->count() > 0)
@foreach($doctors as $doctor)
@php
$gallery = $doctor->galleries($categoryId)->first();
$imagePath = $gallery ? asset('storage/uploads/gallery/' . $gallery->filename) : asset('assets/img/thumbnail-default.jpg');
@endphp
{{ $doctor->designation }}
{{ $doctor->name }}
{{ $doctor->education }}
- Hospital / Location : {{ $doctor->hospital_location }}
- Years of Experience :{{ $doctor->years_experience }} Years
- Languages Spoken : {{ $doctor->languages_spoken }}
@endforeach
@else
No doctors found matching your criteria.
@endif