@extends('front.layouts.master') @section('css') @endsection @section('content')

Book An Appointment

{{ Form::select('department', $departments, $inputs['department'] ?? null, ['class' => 'form-select font-medium', 'style' => 'color: #4C4C4C;']) }}
{{ Form::select('designation', $designations, $inputs['designation'] ?? null, ['class' => 'form-select font-medium', 'style' => 'color: #4C4C4C;']) }}
{{ Form::select('gender', gender(true, '', 'Gender'), $inputs['gender'] ?? null, ['class' => 'form-select font-medium', 'style' => 'color: #4C4C4C;']) }}
@if (isset($doctors) && count($doctors) > 0) @php $path = DOCTOR_PATH; @endphp @foreach ($doctors as $row)
{{ $row->name }}

{{ $row->name }}

{{ $row->designations }}

Specialties: {{ $row->departments }}

Days Availability

@php $weekDaysNames = days(); $disableDays = array_keys($weekDaysNames); $opdDays = explode(',', $row->opd_days); $disableDays = array_diff($disableDays, explode(',', $row->opd_days)); echo implode(', ', array_intersect_key($weekDaysNames, array_flip($opdDays))); @endphp

@endforeach
{!! $doctors->links('pagination::bootstrap-4') !!}
@else
@endif

Need any help?

Contact Feel Free to Us

0181 5017777 ,+91 81451 81451

Emergency Service

Bad times come without a warning. The Ambulances of Hospital are specially designed to keep the critically ill or severely hurt patients safe. There is an Advanced Cardiac Life Support facility in-built in our Ambulances.

@endsection @section('bottom_script') @endsection