@extends('layouts.app') @section('content') @include('includes.navbar')
Back to hospitals

Hospitals in {{ ucwords(str_replace('-', ' ', $city_new)) }} for {{ ucwords(str_replace('-', ' ', $category)) }}

@if ($hosp_data_cate->isEmpty())

No Hospitals found in this category or city.

@else @foreach ($hosp_data_cate as $hosp_data)

@if ($hosp_data->avatar == 'hospital.png') {{ $hosp_data->name }} @else {{ $hosp_data->name }} @endif

View Profile

{{ $hosp_data->name }}

Visit us at:
{{ $hosp_data->address1 }} , {{ $hosp_data->address2 }} ,
{{ $hosp_data->city_name }} , {{ $hosp_data->state }} , {{ $hosp_data->country_name }}

Website


Accreditation: {{ $hosp_data->accreditation }}
Language:{{ $hosp_data->languages }}
Doctors: {{ $hosp_data->no_of_doctors }}
Bed: {{ $hosp_data->no_of_beds }}
Opening Time: 9am - 9pm

Download Brochure
@endforeach
{{--
{{ $hosp_data_cate->links('pagination::bootstrap-4') }}
--}}
{{-- Desktop View: Show full pagination --}}
{{ $hosp_data_cate->links('pagination::bootstrap-4') }}
{{-- Mobile View: Show only 4 pagination buttons --}}
@endif
@endsection