@extends('layouts.main-app') @section('title', 'Homepage') @section('content') @include('layouts.navbar', [ 'headerTitle' => 'Services', 'headerDescription' => '' ])
Healthcare
Home > Services Offered

Clinical and Surgical Departments

@php $services = [ ['name' => 'Internal Medicine', 'link' => url('/services/servicesoffered/item1')], ['name' => 'Pediatrics', 'link' => url('/services/servicesoffered/item2')], ['name' => 'Psychiatry', 'link' => url('/services/servicesoffered/item3')], ['name' => 'Ophthalmology', 'link' => url('/services/servicesoffered/item4')], ['name' => 'Obstetrics and Gynecology Surgery', 'link' => url('/services/servicesoffered/item5')], ['name' => 'Ears, Nose, Throat (ENT) and Head and Neck Surgery', 'link' => '/services/servicesoffered/item6'], ]; @endphp @foreach ($services as $service)

{{ $service['name'] }}

Learn More
@endforeach
@include('frontend.components.healthcareservice.healthcareservice') @include('frontend.components.providing') @endsection