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

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

@if ($doc_data_cate->isEmpty())

No doctors found in this category or city.

@else @foreach ($doc_data_cate as $key => $doc_data)

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

View Profile

{{ $doc_data->name }}

Visit us at:
{{-- {{ $doc_data->area }} , {{ $doc_data->colony }} , --}} {{ $doc_data->pincode }} ,
{{ $doc_data->city_name }} , {{ $doc_data->state }} , {{ $doc_data->country_name }}

{{-- Website --}}
{{--

Accreditation: {{ $doc_data->accreditation }} --}}
Language: {{ $doc_data->languages }}
Degree: {{ $doc_data->degree }}
College: {{ $doc_data->college }}
Opening Time: 9am - 9pm

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