|
@@ -9,10 +9,11 @@ $vitalMap = [
|
|
|
'pulseOx' => 'Pulse Ox.',
|
|
|
'systolicBP' => 'SBP',
|
|
|
'diastolicBP' => 'DBP',
|
|
|
- 'smokingStatus' => 'Smoking Status'
|
|
|
+ 'smokingStatus' => 'Smoking Status',
|
|
|
+ 'bmi' => 'BMI'
|
|
|
];
|
|
|
|
|
|
-$vitalLabels = ['Ht. (in.)','Wt. (lbs.)','Temp. (F)','Pulse','Resp.','Pulse Ox.','SBP','DBP','Smoking Status'];
|
|
|
+$vitalLabels = ['Ht. (in.)','Wt. (lbs.)','Temp. (F)','Pulse','Resp.','Pulse Ox.','SBP','DBP','Smoking Status', 'BMI'];
|
|
|
|
|
|
$vitalValues = [];
|
|
|
|
|
@@ -85,6 +86,10 @@ foreach($patient->measurements as $measurement) {
|
|
|
Smoking Status<br/>
|
|
|
<input type="text" class="form-control form-control-sm" name="smokingStatus" value="{{$vitalValues['Smoking Status']['value']}}" placeholder="">
|
|
|
</div>
|
|
|
+ <div class="mb-2">
|
|
|
+ BMI<br/>
|
|
|
+ <input type="text" class="form-control form-control-sm" name="bmi" value="{{$vitalValues['BMI']['value']}}" placeholder="">
|
|
|
+ </div>
|
|
|
|
|
|
<div class="d-flex align-items-center">
|
|
|
<button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|