Medical Conditions

Add Medical Condition

@foreach($categories as $topCategory) @php $hasConditions = false; foreach ($topCategory->children as $secondLevel) { if ($secondLevel->conditions->count() > 0) { $hasConditions = true; break; } foreach ($secondLevel->children as $thirdLevel) { if ($thirdLevel->conditions->count() > 0) { $hasConditions = true; break 2; } } } @endphp @if($hasConditions) @foreach($topCategory->children as $secondLevel) @foreach($secondLevel->conditions as $condition) @endforeach @foreach($secondLevel->children as $thirdLevel) @foreach($thirdLevel->conditions as $condition) @endforeach @endforeach @endforeach @endif @endforeach

Medical Conditions

@if ($user_medical_conditions->isNotEmpty())
@foreach ($user_medical_conditions as $medical_condition) @endforeach
Condition Diagnosed At Notes Actions
{{ $medical_condition->condition_name }} Delete
@else

{{ __('No medical conditions recorded yet.') }}

@endif