|
@@ -21,10 +21,12 @@ $intakeOrVisit = 'PLAN';
|
|
|
<tr class="">
|
|
|
<th class="border-bottom-0">Medication</th>
|
|
|
<th class="border-bottom-0">Last Review</th>
|
|
|
- <th class="border-bottom-0">Review Today</th>
|
|
|
+ <th class="border-bottom-0">Last Plan</th>
|
|
|
+ <th class="border-bottom-0">Plan Today</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<?php foreach($medications as $medication): ?>
|
|
|
+ <?php $point = $medication; ?>
|
|
|
<tr>
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
@@ -38,7 +40,6 @@ $intakeOrVisit = 'PLAN';
|
|
|
<!-- common actions -->
|
|
|
<div class="ml-auto d-inline-flex align-items-baseline pr-2">
|
|
|
<?php
|
|
|
- $point = $medication;
|
|
|
$label = 'Medication';
|
|
|
include resource_path('views/app/patient/segment-templates/_common_actions/remove-undo.php');
|
|
|
?>
|
|
@@ -47,14 +48,17 @@ $intakeOrVisit = 'PLAN';
|
|
|
</td>
|
|
|
<td>
|
|
|
<?php
|
|
|
- $point = $medication;
|
|
|
include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
|
|
|
?>
|
|
|
</td>
|
|
|
<td>
|
|
|
<?php
|
|
|
- $point = $medication;
|
|
|
- include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
|
|
|
+ ?>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <?php
|
|
|
+ include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
|
|
|
?>
|
|
|
</td>
|
|
|
</tr>
|