@extends('web.layouts.front') @section('title') {{ __('messages.doctors') }} @endsection @section('content')

{{ __('messages.web_home.doctors') }}

image
{{ __('messages.web_home.professional_doctors') }}

{{ __('messages.web_home.we_are_experienced_healthcare_professionals') }}

@foreach($doctors as $doctor)
image

{{ \Illuminate\Support\Str::limit($doctor->user->full_name, 23) }}

  • ({{ \Illuminate\Support\Str::limit($doctor->user->qualification, 25) }})
{{ \Illuminate\Support\Str::limit($doctor->specialist, 15) }} {{ __('messages.doctor.specialist') }}

{{ $doctor->patients_count }}{{ $doctor->patients_count > 0 ? '+' : ''}} Patients

@endforeach
{{ $doctors->links() }}
@endsection