|
@@ -280,6 +280,22 @@ $ccSegment = $note->getSegmentByInternalName('chief_complaint');
|
|
|
|
|
|
</div>
|
|
|
<div class="col-4 border-left">
|
|
|
+
|
|
|
+ <?php
|
|
|
+ $medications = \App\Models\Point::getPointsOfCategory($patient, "MEDICATION");
|
|
|
+ ?>
|
|
|
+ @if(count($medications))
|
|
|
+ <h6 class="my-0 font-weight-bold text-secondary mb-2">Active Medications</h6>
|
|
|
+ <div class="bg-light border px-2 pt-2 pb-1 mb-0">
|
|
|
+ @foreach($medications as $medication)
|
|
|
+ <div class="mb-1">
|
|
|
+ <b><?= !!@($medication->data->name) ? @($medication->data->name) : '-' ?></b>
|
|
|
+ </div>
|
|
|
+ @endforeach
|
|
|
+ </div>
|
|
|
+ <hr class="my-3 m-neg-3">
|
|
|
+ @endif
|
|
|
+
|
|
|
<div class="fdb-dx-vigilance max-height-400px overflow-auto">
|
|
|
|
|
|
</div>
|