|
@@ -18,14 +18,14 @@ if(count($contentData['items'])) {
|
|
<div class="mb-2 <?= @$item["included"] ? '' : 'hide-if-note' ?>">
|
|
<div class="mb-2 <?= @$item["included"] ? '' : 'hide-if-note' ?>">
|
|
<div class="">
|
|
<div class="">
|
|
<b><?= isset($item["title"]) ? $item["title"] :'' ?></b>
|
|
<b><?= isset($item["title"]) ? $item["title"] :'' ?></b>
|
|
- <?= !!$item["icd"] ? '/ ' . $item["icd"] : '' ?>
|
|
|
|
- <?= !!$item["coa"] ? '/ ' . $item["coa"] : '' ?>
|
|
|
|
|
|
+ <?= isset($item["icd"]) ? '/ ' . $item["icd"] : '' ?>
|
|
|
|
+ <?= isset($item["coa"]) ? '/ ' . $item["coa"] : '' ?>
|
|
</div>
|
|
</div>
|
|
- <?php if(!!$item["detail"]): ?>
|
|
|
|
|
|
+ <?php if(isset($item["detail"])): ?>
|
|
<div class="text-secondary font-weight-bold">Detail</div>
|
|
<div class="text-secondary font-weight-bold">Detail</div>
|
|
<div class="ml-2"><?= $item["detail"] ?></div>
|
|
<div class="ml-2"><?= $item["detail"] ?></div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
- <?php if(!!$item["plan"]): ?>
|
|
|
|
|
|
+ <?php if(isset($item["plan"])): ?>
|
|
<div class="text-secondary font-weight-bold">Plan</div>
|
|
<div class="text-secondary font-weight-bold">Plan</div>
|
|
<div class="ml-2"><?= $item["plan"] ?></div>
|
|
<div class="ml-2"><?= $item["plan"] ?></div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|