@extends('layouts.app') @section('title', 'Patient Dashboard') @section('content')
{{ $clinic->line1 }}, {{ $clinic->line2 }}, {{ $clinic->city }}, {{ $clinic->state }}, {{ $clinic->country }} - {{ $clinic->pincode }}
{{ $clinic->about ?? 'No details available.' }}
{{ $doctor->email }}
{{ $doctor->phone_number ?? 'N/A' }}
{{-- Doctor Specialisations --}}{{ $doctor->specializations }} @if(!empty($doctor['specializations'])) @foreach($doctor['specializations'] as $spec) {{ $spec }}@if(!$loop->last), @endif @endforeach @else --- @endif
No doctors assigned to this clinic yet.
@endforelse