浏览代码

Review/plan - UI trigger polish

Vijayakrishnan 3 年之前
父节点
当前提交
c8bdbda1b3

+ 2 - 2
resources/views/app/patient/segment-templates/_child_plan/edit-plan.php

@@ -5,8 +5,8 @@ if ($point->lastChildPlan && $point->last_child_plan_point_scoped_note_id === $n
     $currentValue = $parsedPlan->value;
 }
 ?>
-<div visit-moe large relative>
-    <a start show href="#">Edit</a>
+<div visit-moe large relative class="d-inline">
+    <a start show href="#"><i class="fa fa-plus-square"></i></a>
     <form url="/api/visitPoint/upsertChildPlan" class="mcp-theme-1" right>
         <input type="hidden" name="uid" value="<?= $point->uid ?>">
         <input type="hidden" name="segmentUid" value="<?= $segment->uid ?>">

+ 2 - 2
resources/views/app/patient/segment-templates/_child_review/edit-review.php

@@ -5,8 +5,8 @@ if ($point->lastChildReview && $point->last_child_review_point_scoped_note_id ==
     $currentValue = $parsedReview->value;
 }
 ?>
-<div visit-moe relative>
-    <a start show href="#">Edit</a>
+<div visit-moe relative class="d-inline">
+    <a start show href="#"><i class="fa fa-plus-square"></i></a>
     <form url="/api/visitPoint/upsertChildReview" class="mcp-theme-1" right>
         <input type="hidden" name="uid" value="<?= $point->uid ?>">
         <input type="hidden" name="segmentUid" value="<?= $segment->uid ?>">

+ 13 - 14
resources/views/app/patient/segment-templates/intake_allergies/edit.blade.php

@@ -21,7 +21,6 @@ $allergies = Point::getIntakePointsOfCategory($patient, 'ALLERGY', $note);
                 <th class="border-bottom-0">Allergy</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php foreach($allergies as $allergy): ?>
@@ -91,14 +90,19 @@ $allergies = Point::getIntakePointsOfCategory($patient, 'ALLERGY', $note);
                                 include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Review log<?= !!@($allergy->data->name) ? ' for ' . @($allergy->data->name) : '' ?>"
-                               href="/point/review-log/<?= $allergy->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Review log<?= !!@($allergy->data->name) ? ' for ' . @($allergy->data->name) : '' ?>"
+                                   href="/point/review-log/<?= $allergy->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
                     <td>
@@ -118,11 +122,6 @@ $allergies = Point::getIntakePointsOfCategory($patient, 'ALLERGY', $note);
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 15
resources/views/app/patient/segment-templates/intake_care_team/edit.blade.php

@@ -22,7 +22,6 @@ $careTeamMembers = Point::getIntakePointsOfCategory($patient, 'CARE_TEAM_MEMBER'
                 <th class="border-bottom-0">Care Team Member</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php foreach($careTeamMembers as $careTeamMember): ?>
@@ -114,14 +113,19 @@ $careTeamMembers = Point::getIntakePointsOfCategory($patient, 'CARE_TEAM_MEMBER'
                                 include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Review log<?= !!@($careTeamMember->data->name) ? ' for ' . @($careTeamMember->data->name) : '' ?>"
-                               href="/point/review-log/<?= $careTeamMember->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Review log<?= !!@($careTeamMember->data->name) ? ' for ' . @($careTeamMember->data->name) : '' ?>"
+                                   href="/point/review-log/<?= $careTeamMember->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
                     <td>
@@ -142,12 +146,6 @@ $careTeamMembers = Point::getIntakePointsOfCategory($patient, 'CARE_TEAM_MEMBER'
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        $point = $careTeamMember;
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 14
resources/views/app/patient/segment-templates/intake_goals/edit.blade.php

@@ -23,7 +23,6 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
                 <th class="border-bottom-0">Goal</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php $previousCategory = null; ?>
@@ -167,14 +166,19 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
                                 include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Review log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
-                               href="/point/review-log/<?= $goal->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Review log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
+                                   href="/point/review-log/<?= $goal->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
                     <td>
@@ -194,11 +198,6 @@ $goals = Point::getIntakePointsOfCategory($patient, 'GOAL', $note);
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
                 <?php $previousCategory = $goal->data->category; ?>
                 <?php endif; ?>

+ 0 - 7
resources/views/app/patient/segment-templates/intake_interventions/edit.blade.php

@@ -22,7 +22,6 @@ $interventions = Point::getIntakePointsOfCategory($patient, 'INTERVENTION', $not
                 <th class="border-bottom-0">Intervention</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php $previousCategory = null; ?>
@@ -133,12 +132,6 @@ $interventions = Point::getIntakePointsOfCategory($patient, 'INTERVENTION', $not
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        $point = $intervention;
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
                 <?php $previousCategory = $intervention->data->category; ?>
             <?php endforeach; ?>

+ 13 - 15
resources/views/app/patient/segment-templates/intake_medications/edit.blade.php

@@ -22,7 +22,6 @@ $medications = Point::getIntakePointsOfCategory($patient, 'MEDICATION', $note);
                 <th class="border-bottom-0">Medication</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php foreach($medications as $medication): ?>
@@ -130,14 +129,19 @@ $medications = Point::getIntakePointsOfCategory($patient, 'MEDICATION', $note);
                                 include resource_path('views/app/patient/segment-templates/_child_review/last-review.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Review log<?= !!@($medication->data->name) ? ' for ' . @($medication->data->name) : '' ?>"
-                               href="/point/review-log/<?= $medication->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Review log<?= !!@($medication->data->name) ? ' for ' . @($medication->data->name) : '' ?>"
+                                   href="/point/review-log/<?= $medication->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
                     <td>
@@ -158,12 +162,6 @@ $medications = Point::getIntakePointsOfCategory($patient, 'MEDICATION', $note);
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        $point = $medication;
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 0 - 7
resources/views/app/patient/segment-templates/intake_medications/edit_old.blade.php

@@ -21,7 +21,6 @@ $medications = Point::getIntakePointsOfCategory($patient, 'MEDICATION', $note);
                 <th class="border-bottom-0">Medication</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php foreach($medications as $medication): ?>
@@ -82,12 +81,6 @@ $medications = Point::getIntakePointsOfCategory($patient, 'MEDICATION', $note);
                             </a>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        $point = $medication;
-                        include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 15
resources/views/app/patient/segment-templates/intake_problems/edit.blade.php

@@ -22,7 +22,6 @@ $problems = Point::getIntakePointsOfCategory($patient, 'PROBLEM', $note);
                 <th class="border-bottom-0">Problem</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Review Today</th>
             </tr>
             </thead>
             <?php foreach($problems as $problem): ?>
@@ -103,14 +102,19 @@ $problems = Point::getIntakePointsOfCategory($patient, 'PROBLEM', $note);
                             include resource_path('views/app/patient/segment-templates/_review/problem/last-review.php');
                             ?>
                         </div>
-                        <a class="px-2 view-review-log"
-                           native target="_blank"
-                           open-in-stag-popup
-                           popup-style="stag-popup-md"
-                           title="Review log<?= !!@($problem->data->name) ? ' for ' . @($problem->data->name) : '' ?>"
-                           href="/point/review-log/<?= $problem->uid ?>?popupmode=1">
-                            <i class="fa fa-history"></i>
-                        </a>
+                        <div class="d-inline-flex flex-nowrap">
+                            <a class="px-2 view-review-log"
+                               native target="_blank"
+                               open-in-stag-popup
+                               popup-style="stag-popup-md"
+                               title="Review log<?= !!@($problem->data->name) ? ' for ' . @($problem->data->name) : '' ?>"
+                               href="/point/review-log/<?= $problem->uid ?>?popupmode=1">
+                                <i class="fa fa-history"></i>
+                            </a>
+                            <?php
+                            include resource_path('views/app/patient/segment-templates/_child_review/edit-review.php');
+                            ?>
+                        </div>
                     </div>
                 </td>
                 <td>
@@ -131,12 +135,6 @@ $problems = Point::getIntakePointsOfCategory($patient, 'PROBLEM', $note);
                         </a>
                     </div>
                 </td>
-                <td>
-                    <?php
-                    $point = $problem;
-                    include resource_path('views/app/patient/segment-templates/_review/problem/edit-review.php');
-                    ?>
-                </td>
             </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 14
resources/views/app/patient/segment-templates/plan_allergies/edit.blade.php

@@ -22,7 +22,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Allergy</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php foreach($allergies as $allergy): ?>
@@ -110,21 +109,21 @@ $intakeOrVisit = 'PLAN';
                                 include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Plan log<?= !!@($allergy->data->name) ? ' for ' . @($allergy->data->name) : '' ?>"
-                               href="/point/plan-log/<?= $allergy->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Plan log<?= !!@($allergy->data->name) ? ' for ' . @($allergy->data->name) : '' ?>"
+                                   href="/point/plan-log/<?= $allergy->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 14
resources/views/app/patient/segment-templates/plan_care_team/edit.blade.php

@@ -22,7 +22,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Care Team Member</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php foreach($careTeamMembers as $careTeamMember): ?>
@@ -132,21 +131,21 @@ $intakeOrVisit = 'PLAN';
                                 include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Plan log<?= !!@($careTeamMember->data->name) ? ' for ' . @($careTeamMember->data->name) : '' ?>"
-                               href="/point/plan-log/<?= $careTeamMember->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Plan log<?= !!@($careTeamMember->data->name) ? ' for ' . @($careTeamMember->data->name) : '' ?>"
+                                   href="/point/plan-log/<?= $careTeamMember->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 14
resources/views/app/patient/segment-templates/plan_goals/edit.blade.php

@@ -23,7 +23,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Goal</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php $previousCategory = null; ?>
@@ -185,21 +184,21 @@ $intakeOrVisit = 'PLAN';
                                 include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Plan log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
-                               href="/point/plan-log/<?= $goal->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Plan log<?= !!@($goal->data->name) ? ' for ' . @($goal->data->name) : '' ?>"
+                                   href="/point/plan-log/<?= $goal->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
-                        ?>
-                    </td>
                 </tr>
                 <?php $previousCategory = $goal->data->category; ?>
                 <?php endif; ?>

+ 0 - 1
resources/views/app/patient/segment-templates/plan_interventions/edit.blade.php

@@ -23,7 +23,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Intervention</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php $previousCategory = null; ?>

+ 13 - 14
resources/views/app/patient/segment-templates/plan_medications/edit.blade.php

@@ -22,7 +22,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Medication</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php foreach($medications as $medication): ?>
@@ -124,21 +123,21 @@ $intakeOrVisit = 'PLAN';
                                 include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
                                 ?>
                             </div>
-                            <a class="px-2 view-review-log"
-                               native target="_blank"
-                               open-in-stag-popup
-                               popup-style="stag-popup-md"
-                               title="Plan log<?= !!@($medication->data->name) ? ' for ' . @($medication->data->name) : '' ?>"
-                               href="/point/plan-log/<?= $medication->uid ?>?popupmode=1">
-                                <i class="fa fa-history"></i>
-                            </a>
+                            <div class="d-inline-flex flex-nowrap">
+                                <a class="px-2 view-review-log"
+                                   native target="_blank"
+                                   open-in-stag-popup
+                                   popup-style="stag-popup-md"
+                                   title="Plan log<?= !!@($medication->data->name) ? ' for ' . @($medication->data->name) : '' ?>"
+                                   href="/point/plan-log/<?= $medication->uid ?>?popupmode=1">
+                                    <i class="fa fa-history"></i>
+                                </a>
+                                <?php
+                                include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
+                                ?>
+                            </div>
                         </div>
                     </td>
-                    <td>
-                        <?php
-                        include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
-                        ?>
-                    </td>
                 </tr>
             <?php endforeach; ?>
         </table>

+ 13 - 14
resources/views/app/patient/segment-templates/plan_problems/edit.blade.php

@@ -22,7 +22,6 @@ $intakeOrVisit = 'PLAN';
                 <th class="border-bottom-0">Problem</th>
                 <th class="border-bottom-0">Most Recent Review</th>
                 <th class="border-bottom-0">Most Recent Plan</th>
-                <th class="border-bottom-0">Plan Today</th>
             </tr>
             </thead>
             <?php foreach($problems as $problem): ?>
@@ -120,21 +119,21 @@ $intakeOrVisit = 'PLAN';
                             include resource_path('views/app/patient/segment-templates/_child_plan/last-plan.php');
                             ?>
                         </div>
-                        <a class="px-2 view-review-log"
-                           native target="_blank"
-                           open-in-stag-popup
-                           popup-style="stag-popup-md"
-                           title="Plan log<?= !!@($problem->data->name) ? ' for ' . @($problem->data->name) : '' ?>"
-                           href="/point/plan-log/<?= $problem->uid ?>?popupmode=1">
-                            <i class="fa fa-history"></i>
-                        </a>
+                        <div class="d-inline-flex flex-nowrap">
+                            <a class="px-2 view-review-log"
+                               native target="_blank"
+                               open-in-stag-popup
+                               popup-style="stag-popup-md"
+                               title="Plan log<?= !!@($problem->data->name) ? ' for ' . @($problem->data->name) : '' ?>"
+                               href="/point/plan-log/<?= $problem->uid ?>?popupmode=1">
+                                <i class="fa fa-history"></i>
+                            </a>
+                            <?php
+                            include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
+                            ?>
+                        </div>
                     </div>
                 </td>
-                <td>
-                    <?php
-                    include resource_path('views/app/patient/segment-templates/_child_plan/edit-plan.php');
-                    ?>
-                </td>
             </tr>
             <?php endforeach; ?>
         </table>