@extends('layouts.doctor')
@section('title', 'Consultation')
@section('content')
@php $cur = config('clinic.currency.symbol'); @endphp
{{ $patient->full_name }}
{{ ucfirst($patient->gender ?? '') }} · DOB {{ $patient->dob?->format('d M Y') ?? '—' }}
Allergies: @forelse($patient->allergies ?? [] as $a){{ $a }}@empty None@endforelse
Conditions: @forelse($patient->conditions ?? [] as $c){{ $c }}@empty None@endforelse