@extends('layoutsfrontend.master') @section('content')
@if(isset($services['hero'])) @foreach($services['hero'] as $item) @endforeach @else @endif

Our Approach

Our Approach

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

@php $approachMain = isset($services['approach_main']) ? $services['approach_main'] : collect(); $chunks = $approachMain->chunk(ceil($approachMain->count() / 2) ?: 1); @endphp @foreach($chunks as $chunk)
    @foreach($chunk as $sm)
  • {{ $sm->title }}
  • @endforeach
@endforeach
@if(isset($services['approach'])) @foreach($services['approach'] as $index => $item)

{{ $item->title }}

{{ $item->description }}

@if($item->points)
    @foreach(explode("\n", $item->points) as $point) @if(trim($point))
  • {{ trim($point) }}
  • @endif @endforeach
@endif
@endforeach @endif

Our Emergency Team

Meet Our Emergency & Trauma Care Team

Trust our dedicated professionals to guide you on your optimal health and well-being journey.

@php $teamMain = isset($services['team_main']) ? $services['team_main'] : collect(); $teamChunks = $teamMain->chunk(ceil($teamMain->count() / 2) ?: 1); @endphp @foreach($teamChunks as $chunk)
    @foreach($chunk as $tm)
  • {{ $tm->title }}
  • @endforeach
@endforeach
@foreach($doctors as $doctor)
@php $gallery = $doctor->galleries(3)->first(); $imagePath = $gallery ? asset('storage/uploads/gallery/' . $gallery->filename) : asset('assets/img/thumbnail-default.jpg'); @endphp {{ $doctor->name }}

{{ $doctor->name }}

{{ $doctor->designation }}

@endforeach

Patient Journey

Our Hospital offers a range of specialized departments for tailored care

@if(isset($services['journey'])) @foreach($services['journey'] as $index => $item)

{{ $item->description }}

@if($item->points)
    @foreach(explode("\n", $item->points) as $point) @if(trim($point))
  • {{ trim($point) }}
  • @endif @endforeach
@endif
@endforeach @endif

Success Stories

Success Stories and Patient Testimonials

Discover inspiring story from individuals who have overcome addiction and rebuilt their lives through our compassionate care.

@foreach($testimonial as $restestimonial)
@php $gallery = $restestimonial->galleries(12)->first(); $imagePath = $gallery ? asset('storage/uploads/gallery/' . $gallery->filename) : asset('assets/img/thumbnail-default.jpg'); @endphp {{ $doctor->name }}
@endforeach
@foreach($testimonial as $restestimonial)

{{$restestimonial->description}}

{{$restestimonial->name}}

{{$restestimonial->company}}

@endforeach
@endsection