|
@@ -20,16 +20,18 @@
|
|
|
<th class="border-0">Mailing Address State</th>
|
|
|
<th class="border-0">Insurance</th>
|
|
|
@if($performer->pro->pro_type == 'ADMIN')
|
|
|
- <th class="border-0">Ded.</th>
|
|
|
- @endif
|
|
|
+ <th class="border-0">Ded.</th>
|
|
|
+ @endif
|
|
|
+ <th class="border-0">Age</th>
|
|
|
<th class="border-0">@include('app.practice-management._sort_header', ['route' => route("admin.patients"), 'label' => 'Last Visit', 'key' => 'most_recent_completed_mcp_note_date'])</th>
|
|
|
+ <th class="border-0">Notes</th>
|
|
|
<th class="border-0">Next Appt.</th>
|
|
|
<th class="border-0">@include('app.practice-management._sort_header', ['route' => route("admin.patients"), 'label' => 'BP/Pulse Timestamp', 'key' => 'most_recent_cellular_bp_measurement_at'])</th>
|
|
|
<th class="border-0">@include('app.practice-management._sort_header', ['route' => route("admin.patients"), 'label' => 'Weight Timestamp', 'key' => 'most_recent_cellular_weight_measurement_at'])</th>
|
|
|
<th class="border-0">@include('app.practice-management._sort_header', ['route' => route("admin.patients"), 'label' => 'Created', 'key' => 'created_at'])</th>
|
|
|
<th class="border-0">Assigned On</th>
|
|
|
<th class="border-0">NA</th>
|
|
|
- <th class="border-0">Notes</th>
|
|
|
+
|
|
|
<th class="border-0">@include('app.practice-management._sort_header', ['route' => route("admin.patients"), 'label' => 'Status', 'key' => 'client_engagement_status_category'])</th>
|
|
|
<th class="border-0">Temp. Gun</th>
|
|
|
<th class="border-0">Pulse Ox.</th>
|
|
@@ -90,26 +92,15 @@
|
|
|
<span class="font-weight-bold">{{ format_number(@$patient->mpb_remaining)}}</span>
|
|
|
</small>
|
|
|
</td>
|
|
|
+ <td>{{$patient->age_in_years}}</td>
|
|
|
@endif
|
|
|
<td>
|
|
|
{{ friendly_date($patient->most_recent_completed_mcp_note_date) }}
|
|
|
- {{-- {{$patient->lastMcpAppointment ? friendly_date_time($patient->lastMcpAppointment->raw_date.' '.$patient->lastMcpAppointment->raw_start_time) : '-'}}--}}
|
|
|
- </td>
|
|
|
- <td>{{$patient->nextMcpAppointment ? friendly_date_time($patient->nextMcpAppointment->raw_date.' '.$patient->nextMcpAppointment->raw_start_time) : '-'}}
|
|
|
- <div if-details-view>
|
|
|
- {{$patient->nextMcpAppointment ? $patient->nextMcpAppointment->status : '-'}}
|
|
|
- </div>
|
|
|
- </td>
|
|
|
- <td>{{ friendlier_date_time($patient->most_recent_cellular_bp_measurement_at) }}</td>
|
|
|
- <td>{{ friendlier_date_time($patient->most_recent_cellular_weight_measurement_at) }}</td>
|
|
|
- <td>
|
|
|
- <div title="{{friendly_date_time($patient->created_at)}}">{{friendly_date_time($patient->created_at, false)}}</div>
|
|
|
- <div class="mt-1" if-details-view>
|
|
|
- By <span>{{$patient->creator ? $patient->creator->displayName() : '-'}}</span>
|
|
|
- </div>
|
|
|
+ @if($patient->lastMcpAppointment)
|
|
|
+ <br />
|
|
|
+ <small class="text-muted">{{ $patient->lastMcpAppointment->pro->displayName() }}</small>
|
|
|
+ @endif
|
|
|
</td>
|
|
|
- <td>{{$patient->getMcpAssignedOn()}}</td>
|
|
|
- <td>{{$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '-'}}</td>
|
|
|
<td class="p-0 pb-1">
|
|
|
<div if-details-view>
|
|
|
@if(count($patient->activeNotes))
|
|
@@ -295,6 +286,22 @@
|
|
|
{{count($patient->activeNotes)}}
|
|
|
</div>
|
|
|
</td>
|
|
|
+ <td>{{$patient->nextMcpAppointment ? friendly_date_time($patient->nextMcpAppointment->raw_date.' '.$patient->nextMcpAppointment->raw_start_time) : '-'}}
|
|
|
+ <div if-details-view>
|
|
|
+ {{$patient->nextMcpAppointment ? $patient->nextMcpAppointment->status : '-'}}
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td>{{ friendlier_date_time($patient->most_recent_cellular_bp_measurement_at) }}</td>
|
|
|
+ <td>{{ friendlier_date_time($patient->most_recent_cellular_weight_measurement_at) }}</td>
|
|
|
+ <td>
|
|
|
+ <div title="{{friendly_date_time($patient->created_at)}}">{{friendly_date_time($patient->created_at, false)}}</div>
|
|
|
+ <div class="mt-1" if-details-view>
|
|
|
+ By <span>{{$patient->creator ? $patient->creator->displayName() : '-'}}</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td>{{$patient->getMcpAssignedOn()}}</td>
|
|
|
+ <td>{{$patient->defaultNaPro ? $patient->defaultNaPro->displayName() : '-'}}</td>
|
|
|
+
|
|
|
<td>{{$patient->client_engagement_status_category == 'DUMMY'? 'Test Record': $patient->client_engagement_status_category}}</td>
|
|
|
<td>{{$patient->temparatureGunDeliveryStatus()}}</td>
|
|
|
<td>{{$patient->pulseOximeterDeliveryStatus()}}</td>
|