@extends('layouts.frontend') @section('title', 'Find Best Doctors & Book Appointments Online | ' . config('app.name')) @section('description', 'Discover top-rated doctors and hospitals near you. Book appointments easily through our healthcare platform.') @section('canonical', route('home')) @section('content')
{{ $stats['totalAppointments'] >= 1000 ? round($stats['totalAppointments']/1000, 1).'K+' : $stats['totalAppointments'].'+' }} Appointments Completed
4.9

Discover Health: Find Your Trusted Doctors Today

Connect with {{ $stats['totalDoctors'] }}+ top healthcare professionals. Book appointments instantly and get quality medical care at your fingertips.

{{ $stats['totalDoctors'] }}+

Verified Doctors

{{ $stats['totalHospitals'] }}+

Hospitals

@php $heroDoctor = $featuredDoctors->first(); @endphp @if($heroDoctor && $heroDoctor->image) Featured Doctor @else Doctor @endif

{{ $stats['totalAppointments'] >= 1000 ? round($stats['totalAppointments']/1000, 1).'K+' : $stats['totalAppointments'].'+' }}

Appointments

{{ $stats['satisfiedPatients'] >= 1000 ? round($stats['satisfiedPatients']/1000, 1).'K+' : $stats['satisfiedPatients'].'+' }}

Satisfied Patients

Why Choose Us

Why Choose Bogura Medical Service

We are committed to providing high-quality, reliable, and patient-centered healthcare services

Experienced Doctors

Our platform connects you with highly qualified and experienced medical professionals.

Easy Appointment Booking

Book your doctor appointment quickly and easily without any hassle.

Trusted Healthcare Network

We partner with verified hospitals and clinics to ensure quality treatment.

Fast & Reliable Service

Get quick responses and efficient healthcare support whenever you need it.

@if($doctors->count() > 0)
Our Experts

Meet Our Expert Doctors

Qualified and experienced medical professionals ready to provide you with the best healthcare.

@foreach($doctors as $doctor)
@if($doctor->image) {{ $doctor->name }} @else
@endif @if($doctor->availability === 'available') Available @endif

{{ $doctor->name }}

@if(is_array($doctor->specialties)) {{ implode(', ', array_slice($doctor->specialties, 0, 2)) }} @else {{ $doctor->specialties ?? 'General Practitioner' }} @endif

{{ $doctor->experience ?? 0 }}+ Years

{{ Str::limit($doctor->bio, 80) }}

Book Appointment
@endforeach
@endif @if($hospitals->count() > 0)
Our Hospitals

Trusted Hospitals & Clinics

Explore our network of verified hospitals providing world-class healthcare services.

@foreach($hospitals as $hospital)
@if($hospital->image) {{ $hospital->name }} @else
@endif

{{ $hospital->name }}

@if($hospital->address)

{{ Str::limit($hospital->address, 30) }}

@endif
@php $services = is_string($hospital->services) ? json_decode($hospital->services, true) : ($hospital->services ?? []); $displayServices = array_slice(is_array($services) ? $services : [], 0, 3); @endphp @if(count($displayServices) > 0)
@foreach($displayServices as $service) {{ is_array($service) ? ($service['value'] ?? '') : $service }} @endforeach
@endif
@endforeach
@endif
Health Blog

Latest Health Tips & Medical Advice

Stay informed with the latest health tips, medical advice, and important healthcare information

@if($blogs->count() > 0) @endif
@if($faqs->count() > 0)
FAQ

Frequently Asked Questions

Find answers to common questions

@foreach($faqs as $faq)
{{ $faq->answer }}
@endforeach
@endif

Ready to Book Your Appointment?

Schedule a consultation with our expert doctors today and take the first step towards better health.

Book Appointment Now
@if($testimonials->count() > 0)
Testimonials

What Our Patients Say

Trusted by thousands of patients

@foreach($testimonials as $t)
@for($i = 1; $i <= 5; $i++) @endfor

"{{ $t->comment }}"

{{ strtoupper(substr($t->name, 0, 1)) }}

{{ $t->name }}

Patient

@endforeach
@if($testimonials->count() > 1)
@foreach($testimonials as $t) @endforeach
@endif
@endif @endsection