|
@@ -75,7 +75,7 @@
|
|
|
@if($patient->next_mcp_appointment_date)
|
|
|
<span class="text-muted">Next Appt. <b>{{ friendly_date_time($patient->next_mcp_appointment_date) }}</b></span>
|
|
|
@endif
|
|
|
- <?= $recentNote = $patient->mostRecentCompletedMcpNote; ?>
|
|
|
+ <?php $recentNote = $patient->mostRecentCompletedMcpNote; ?>
|
|
|
@if($recentNote)
|
|
|
<div>
|
|
|
Note: <a href="/patients/view/{{ $patient->uid }}/notes/view/{{ $recentNote->uid }}" class="font-weight-bold">
|
|
@@ -86,41 +86,43 @@
|
|
|
</div>
|
|
|
</td>
|
|
|
<td>
|
|
|
- <div class="d-flex flex-column">
|
|
|
- <span>Enrolled:
|
|
|
- @if($patient->is_enrolled_in_rm === 'YES')
|
|
|
- <i class="fas fa-check-circle text-success" data-toggle="tooltip" data-placement="bottom" title="YES"></i>
|
|
|
- @elseif($patient->is_enrolled_in_rm === 'NO')
|
|
|
- <i
|
|
|
- class="fas fa-times-circle text-danger"
|
|
|
- tabindex="0"
|
|
|
- data-toggle="popover"
|
|
|
- title="No"
|
|
|
- data-target="#enrollment-{{ $patient->uid }}"
|
|
|
- ></i>
|
|
|
- @elseif($patient->is_enrolled_in_rm === 'UNKNOWN')
|
|
|
- <i
|
|
|
- tabindex="0"
|
|
|
- data-toggle="popover"
|
|
|
- title="Uknown"
|
|
|
- data-target="#enrollment-{{ $patient->uid }}"
|
|
|
- class="fas fa-question-circle text-secondary"
|
|
|
- popover
|
|
|
- ></i>
|
|
|
- @endif
|
|
|
- </span>
|
|
|
- <div id="enrollment-{{ $patient->uid }}" class="d-none">
|
|
|
- <span>Is Eligible for RM: {{ $patient->is_eligible_for_rm }}</span><br>
|
|
|
- <span>Why not eligible: {{ $patient->why_not_eligible_for_rm_category ?? '---' }}</span><br>
|
|
|
- <span>{{ $patient->why_not_eligible_for_rm_memo }}</span>
|
|
|
- </div>
|
|
|
+ <div class="">
|
|
|
+ <div class="on-hover-show d-inline-block">
|
|
|
+ <span>Enrolled:
|
|
|
+ @if($patient->is_enrolled_in_rm === 'YES')
|
|
|
+ <i class="fas fa-check-circle text-success" data-toggle="tooltip" data-placement="bottom" title="YES"></i>
|
|
|
+ @elseif($patient->is_enrolled_in_rm === 'NO')
|
|
|
+ <i
|
|
|
+ class="fas fa-times-circle text-danger"
|
|
|
+ tabindex="0"
|
|
|
+ data-toggle="popover"
|
|
|
+ title="No"
|
|
|
+ data-target="#enrollment-{{ $patient->uid }}"
|
|
|
+ ></i>
|
|
|
+ @elseif($patient->is_enrolled_in_rm === 'UNKNOWN')
|
|
|
+ <i
|
|
|
+ tabindex="0"
|
|
|
+ data-toggle="popover"
|
|
|
+ title="Uknown"
|
|
|
+ data-target="#enrollment-{{ $patient->uid }}"
|
|
|
+ class="fas fa-question-circle text-secondary"
|
|
|
+ popover
|
|
|
+ ></i>
|
|
|
+ @endif
|
|
|
+ </span>
|
|
|
+ <div id="enrollment-{{ $patient->uid }}" class="on-hover-content">
|
|
|
+ <span>Is Eligible for RM: {{ $patient->is_eligible_for_rm }}</span><br>
|
|
|
+ <span>Why not eligible: {{ $patient->why_not_eligible_for_rm_category ?? '---' }}</span><br>
|
|
|
+ <span>{{ $patient->why_not_eligible_for_rm_memo }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<?php $m = $patient->lastMeasurementOfType('Wt. (lbs.)');?>
|
|
|
@if($m)
|
|
|
- <span>Wt. (lbs.) {{$m && $m->value ? round($m->value, 2) : '-'}}</span>
|
|
|
+ <span class="d-block mt-1">Wt. (lbs.) {{$m && $m->value ? round($m->value, 2) : '-'}}</span>
|
|
|
@endif
|
|
|
<?php $bp = $patient->lastMeasurementOfType('BP'); ?>
|
|
|
@if($bp)
|
|
|
- <span>BP. {{$bp && $bp->value ? $bp->value : '-'}}</span>
|
|
|
+ <span class="d-block mt-1">BP. {{$bp && $bp->value ? $bp->value : '-'}}</span>
|
|
|
@endif
|
|
|
</div>
|
|
|
</td>
|