|
@@ -187,7 +187,555 @@
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-6">
|
|
<div class="col-6">
|
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
|
+ <b>BP Management</b>
|
|
|
|
+ <span class="mx-2 text-secondary">|</span>
|
|
|
|
+ <div moe large>
|
|
|
|
+ <a href="#" start show>Update</a>
|
|
|
|
+ <form url="/api/client/updateBpManagementValue">
|
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
|
+ <p>BP Management</p>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Is BP Monitoring Needed?</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" condition name="isBpMonitoringNeeded">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->is_bp_monitoring_needed === 'YES' ? 'selected' : '' }} value="YES">Yes</option>
|
|
|
|
+ <option {{$patient->is_bp_monitoring_needed === 'NO' ? 'selected' : '' }} value="NO">No</option>
|
|
|
|
+ <option {{$patient->is_bp_monitoring_needed === 'UNKNOWN' ? 'selected' : '' }} value="UNKNOWN">Unknown</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div condition-key="isBpMonitoringNeeded" condition-value="YES">
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Why Is BP Monitoring Needed?</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeeded" value="{{$patient->why_is_bp_monitoring_needed}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-3 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">ICD 1</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededIcd1" value="{{$patient->why_is_bp_monitoring_needed_icd1}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-3 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">ICD 2</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededIcd2" value="{{$patient->why_is_bp_monitoring_needed_icd2}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-3 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">ICD 3</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededIcd3" value="{{$patient->why_is_bp_monitoring_needed_icd3}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-3">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">ICD 4</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededIcd4" value="{{$patient->why_is_bp_monitoring_needed_icd4}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-6 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Description 1</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededDescription1" value="{{$patient->why_is_bp_monitoring_needed_description1}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-6">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Description 2</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededDescription2" value="{{$patient->why_is_bp_monitoring_needed_description2}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-6 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Description 3</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededDescription3" value="{{$patient->why_is_bp_monitoring_needed_description3}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-6">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Description 4</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="whyIsBpMonitoringNeededDescription4" value="{{$patient->why_is_bp_monitoring_needed_description4}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Has Pre-Hypertension Dx?</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="hasPrehypertensionDx">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->has_prehypertension_dx === 'YES' ? 'selected' : ''}} value="YES">Yes</option>
|
|
|
|
+ <option {{$patient->has_prehypertension_dx === 'NO' ? 'selected' : ''}} value="NO">No</option>
|
|
|
|
+ <option {{$patient->has_prehypertension_dx === 'UNKNOWN' ? 'selected' : ''}} value="UNKNOWN">Unknown</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Has Hypertension Dx?</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="hasHypertensionDx">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->has_hypertension_dx === 'YES' ? 'selected' : ''}} value="YES">Yes</option>
|
|
|
|
+ <option {{$patient->has_hypertension_dx === 'NO' ? 'selected' : ''}} value="NO">No</option>
|
|
|
|
+ <option {{$patient->has_hypertension_dx === 'UNKNOWN' ? 'selected' : ''}} value="UNKNOWN">Unknown</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Is Prescribed Hypertension Medicine?</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="isPrescribedHypertensionMedicine">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->is_prescribed_hypertension_medicine === 'YES' ? 'selected' : ''}} value="YES">Yes</option>
|
|
|
|
+ <option {{$patient->is_prescribed_hypertension_medicine === 'NO' ? 'selected' : ''}} value="NO">No</option>
|
|
|
|
+ <option {{$patient->is_prescribed_hypertension_medicine === 'UNKNOWN' ? 'selected' : ''}} value="UNKNOWN">Unknown</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Is goal to reduce hypertension medicine?</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="isGoalToReduceHypertensionMedicine">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->is_goal_to_reduce_hypertension_medicine === 'YES' ? 'selected' : ''}} value="YES">Yes</option>
|
|
|
|
+ <option {{$patient->is_goal_to_reduce_hypertension_medicine === 'NO' ? 'selected' : ''}} value="NO">No</option>
|
|
|
|
+ <option {{$patient->is_goal_to_reduce_hypertension_medicine === 'UNKNOWN' ? 'selected' : ''}} value="UNKNOWN">Unknown</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Goal to reduce hypertension medicine</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="goalToReduceHypertensionMedicine" value="{{$patient->goal_to_reduce_hypertension_medicine}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Management Goal Category</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="sbpManagementGoalCategory">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->sbp_management_goal_category === 'LOSE' ? 'selected' : ''}} value="LOSE">Lose</option>
|
|
|
|
+ <option {{$patient->sbp_management_goal_category === 'GAIN' ? 'selected' : ''}} value="GAIN">Gain</option>
|
|
|
|
+ <option {{$patient->sbp_management_goal_category === 'MAINTAIN' ? 'selected' : ''}} value="MAINTAIN">Maintain</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Management Goal Category</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="dbpManagementGoalCategory">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->dbp_management_goal_category === 'LOSE' ? 'selected' : ''}} value="LOSE">Lose</option>
|
|
|
|
+ <option {{$patient->dbp_management_goal_category === 'GAIN' ? 'selected' : ''}} value="GAIN">Gain</option>
|
|
|
|
+ <option {{$patient->dbp_management_goal_category === 'MAINTAIN' ? 'selected' : ''}} value="MAINTAIN">Maintain</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="mb-2">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Management Goal Category</label>
|
|
|
|
+ <select type="text" class="form-control form-control-sm min-width-unset" name="pulseManagementGoalCategory">
|
|
|
|
+ <option value="">-- select --</option>
|
|
|
|
+ <option {{$patient->pulse_management_goal_category === 'LOSE' ? 'selected' : ''}} value="LOSE">Lose</option>
|
|
|
|
+ <option {{$patient->pulse_management_goal_category === 'GAIN' ? 'selected' : ''}} value="GAIN">Gain</option>
|
|
|
|
+ <option {{$patient->pulse_management_goal_category === 'MAINTAIN' ? 'selected' : ''}} value="MAINTAIN">Maintain</option>
|
|
|
|
+ </select>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <p><b>Baseline AM Resting BP</b></p>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingSbp" value="{{$patient->baseline_am_resting_sbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingSbpMin" value="{{$patient->baseline_am_resting_sbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingSbpMax" value="{{$patient->baseline_am_resting_sbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingDbp" value="{{$patient->baseline_am_resting_dbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingDbpMin" value="{{$patient->baseline_am_resting_dbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingDbpMax" value="{{$patient->baseline_am_resting_dbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingPulse" value="{{$patient->baseline_am_resting_pulse}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingPulseMin" value="{{$patient->baseline_am_resting_pulse_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselineAmRestingPulseMax" value="{{$patient->baseline_am_resting_pulse_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <p><b>Baseline PM Resting BP</b></p>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingSbp" value="{{$patient->baseline_pm_resting_sbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingSbpMin" value="{{$patient->baseline_pm_resting_sbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingSbpMax" value="{{$patient->baseline_pm_resting_sbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingDbp" value="{{$patient->baseline_pm_resting_dbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingDbpMin" value="{{$patient->baseline_pm_resting_dbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingDbpMax" value="{{$patient->baseline_pm_resting_dbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingPulse" value="{{$patient->baseline_pm_resting_pulse}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingPulseMin" value="{{$patient->baseline_pm_resting_pulse_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="baselinePmRestingPulseMax" value="{{$patient->baseline_pm_resting_pulse_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <p><b>Ideal AM Resting BP</b></p>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingSbp" value="{{$patient->ideal_am_resting_sbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingSbpMin" value="{{$patient->ideal_am_resting_sbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingSbpMax" value="{{$patient->ideal_am_resting_sbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingDbp" value="{{$patient->ideal_am_resting_dbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingDbpMin" value="{{$patient->ideal_am_resting_dbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingDbpMax" value="{{$patient->ideal_am_resting_dbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingPulse" value="{{$patient->ideal_am_resting_pulse}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingPulseMin" value="{{$patient->ideal_am_resting_pulse_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealAmRestingPulseMax" value="{{$patient->ideal_am_resting_pulse_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <p><b>Ideal PM Resting BP</b></p>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingSbp" value="{{$patient->ideal_pm_resting_sbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingSbpMin" value="{{$patient->ideal_pm_resting_sbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">SBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingSbpMax" value="{{$patient->ideal_pm_resting_sbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingDbp" value="{{$patient->ideal_pm_resting_dbp}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingDbpMin" value="{{$patient->ideal_pm_resting_dbp_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">DBP Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingDbpMax" value="{{$patient->ideal_pm_resting_dbp_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingPulse" value="{{$patient->ideal_pm_resting_pulse}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4 pr-0">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Min</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingPulseMin" value="{{$patient->ideal_pm_resting_pulse_min}}">
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-4">
|
|
|
|
+ <label class="text-sm text-secondary mb-1">Pulse Max</label>
|
|
|
|
+ <input type="text" class="form-control form-control-sm min-width-unset" name="idealPmRestingPulseMax" value="{{$patient->ideal_pm_resting_pulse_max}}">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ <div class="pt-2">
|
|
|
|
+ <button class="btn btn-success btn-sm" submit>Submit</button>
|
|
|
|
+ <button class="btn btn-default border btn-sm" cancel>Cancel</button>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="table table-sm table-condensed table-bordered table-hover mt-3">
|
|
|
|
+ <tbody>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Is BP Monitoring Needed?</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->is_bp_monitoring_needed}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @if($patient->is_bp_monitoring_needed === 'YES')
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Why Is Weight Monitoring Needed</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>ICD 1</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_icd1}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>ICD 2</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_icd2}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>ICD 3</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_icd3}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>ICD 4</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_icd4}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Description 1</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_description1}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Description 2</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_description2}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Description 3</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_description3}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Description 4</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->why_is_bp_monitoring_needed_description4}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Has Pre-Hypertension Dx?</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->has_prehypertension_dx}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Has Hypertension Dx?</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->has_hypertension_dx}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Is prescribed hypertension medicine?</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->is_prescribed_hypertension_medicine}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Is goal to reduce hypertension medicine?</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->is_goal_to_reduce_hypertension_medicine}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Goal to reduce hypertension medicine</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->goal_to_reduce_hypertension_medicine}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>SBP management goal category</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->sbp_management_goal_category}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr class="col-4">
|
|
|
|
+ <td>DBP management goal category</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->dbp_management_goal_category}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Pulse management goal category</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->pulse_management_goal_category}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting SBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_sbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting SBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_sbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting SBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_sbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting DBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_dbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting DBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_dbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting DBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_dbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting pulse</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_pulse}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting pulse min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_pulse_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline AM resting pulse max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_am_resting_pulse_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting SBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_sbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting SBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_sbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting SBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_sbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting DBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_dbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting DBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_dbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting DBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_dbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting pulse</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_pulse}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting pulse min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_pulse_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Baseline PM resting pulse max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->baseline_pm_resting_pulse_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting SBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_sbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting SBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_sbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting SBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_sbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting DBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_dbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting DBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_dbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting DBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_dbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting pulse</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_pulse}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting pulse min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_pulse_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal AM resting pulse max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_am_resting_pulse_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting SBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_sbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting SBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_sbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting SBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_sbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting DBP</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_dbp}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting DBP min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_dbp_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting DBP max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_dbp_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting pulse</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_pulse}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting pulse min</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_pulse_min}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>Ideal PM resting pulse max</td>
|
|
|
|
+ <td class="font-weight-bold">{{$patient->ideal_pm_resting_pulse_max}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ @endif
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|