|
@@ -20,12 +20,13 @@ list($careTeamMembers, $counts) = Point::getPointsOfCategoryExtended($patient, '
|
|
@if($patient->core_note_id !== $note->id)
|
|
@if($patient->core_note_id !== $note->id)
|
|
<th class="border-bottom-0 text-secondary text-center width-30px">Rel.</th>
|
|
<th class="border-bottom-0 text-secondary text-center width-30px">Rel.</th>
|
|
@endif
|
|
@endif
|
|
- <th class="border-bottom-0 text-secondary">Name</th>
|
|
|
|
|
|
+ <th class="border-bottom-0 text-secondary">Name/Details</th>
|
|
<th class="border-bottom-0 text-secondary">Edit</th>
|
|
<th class="border-bottom-0 text-secondary">Edit</th>
|
|
<th class="border-bottom-0 text-secondary w-25">Subjective</th>
|
|
<th class="border-bottom-0 text-secondary w-25">Subjective</th>
|
|
<th class="border-bottom-0 text-secondary w-25">Plan</th>
|
|
<th class="border-bottom-0 text-secondary w-25">Plan</th>
|
|
- <th class="border-bottom-0 text-secondary">Details</th>
|
|
|
|
<th class="border-bottom-0 text-secondary">Contact</th>
|
|
<th class="border-bottom-0 text-secondary">Contact</th>
|
|
|
|
+ <th class="border-bottom-0 text-secondary">Active?</th>
|
|
|
|
+ <th class="border-bottom-0 text-secondary">Started</th>
|
|
<th class="border-bottom-0 text-secondary">Ended</th>
|
|
<th class="border-bottom-0 text-secondary">Ended</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
@@ -50,6 +51,8 @@ list($careTeamMembers, $counts) = Point::getPointsOfCategoryExtended($patient, '
|
|
@include('app.patient.wizard-partials.state-icon', ['point' => $careTeamMember])
|
|
@include('app.patient.wizard-partials.state-icon', ['point' => $careTeamMember])
|
|
<div>
|
|
<div>
|
|
<b><?= !!@($careTeamMember->data->name) ? @($careTeamMember->data->name) : '-' ?></b>
|
|
<b><?= !!@($careTeamMember->data->name) ? @($careTeamMember->data->name) : '-' ?></b>
|
|
|
|
+ <?= !!@($careTeamMember->data->specialty) ? '<br>' . @($careTeamMember->data->specialty) : '' ?>
|
|
|
|
+ <?= !!@($careTeamMember->data->organization) ? '<br>' . @($careTeamMember->data->organization) : '' ?>
|
|
@include('app.patient.wizard-partials.state-badge', ['point' => $careTeamMember])
|
|
@include('app.patient.wizard-partials.state-badge', ['point' => $careTeamMember])
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -203,12 +206,8 @@ list($careTeamMembers, $counts) = Point::getPointsOfCategoryExtended($patient, '
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
- <?= !!@($careTeamMember->data->specialty) ? @($careTeamMember->data->specialty) : '-' ?><br>
|
|
|
|
- <?= !!@($careTeamMember->data->organization) ? @($careTeamMember->data->organization) : '-' ?>
|
|
|
|
- </td>
|
|
|
|
- <td>
|
|
|
|
- <?= !!@($careTeamMember->data->phone) ? @($careTeamMember->data->phone) : '-' ?><br>
|
|
|
|
- <?= !!@($careTeamMember->data->fax) ? @($careTeamMember->data->fax) : '-' ?>
|
|
|
|
|
|
+ <?= '<span class="text-secondary">Ph: </span>' . (!!@($careTeamMember->data->phone) ? @($careTeamMember->data->phone) : '-') ?><br>
|
|
|
|
+ <?= '<span class="text-secondary">Fax: </span>' . (!!@($careTeamMember->data->fax) ? @($careTeamMember->data->fax) : '-') ?>
|
|
</td>
|
|
</td>
|
|
<td>
|
|
<td>
|
|
@if($careTeamMember->is_removed)
|
|
@if($careTeamMember->is_removed)
|