|
@@ -40,10 +40,12 @@
|
|
|
<div class="d-flex align-items-center">
|
|
|
<div class="width-70px"><?= vsRoElement('usual_bmi_min', 'number', 'usualBmiMin', $patient) ?></div>
|
|
|
<span class="text-secondary">
|
|
|
- <input type="text" readonly=""
|
|
|
- class="border-0 bg-transparent width-90px ml-1"
|
|
|
- name="usualBmiMinCategory"
|
|
|
- value="{{$patient->usual_bmi_min_category ?? ''}}">
|
|
|
+ @if($patient->usual_bmi_min_category)
|
|
|
+ <input type="text" readonly=""
|
|
|
+ class="border-0 bg-transparent width-90px ml-1"
|
|
|
+ name="usualBmiMinCategory"
|
|
|
+ value="{{$patient->usual_bmi_min_category ?? ''}}">
|
|
|
+ @endif
|
|
|
</span>
|
|
|
</div>
|
|
|
</td>
|
|
@@ -57,10 +59,12 @@
|
|
|
<div class="d-flex align-items-center">
|
|
|
<div class="width-70px"><?= vsRoElement('ideal_bmi', 'number', 'idealBmi', $patient) ?></div>
|
|
|
<span class="text-secondary">
|
|
|
+ @if($patient->ideal_bmi_category)
|
|
|
<input type="text" readonly=""
|
|
|
class="border-0 bg-transparent width-90px ml-1"
|
|
|
name="idealBmiCategory"
|
|
|
value="{{$patient->ideal_bmi_category ?: ''}}">
|
|
|
+ @endif
|
|
|
</span>
|
|
|
</div>
|
|
|
</td>
|