|
@@ -11,37 +11,44 @@
|
|
|
><span class="sort-data">{{ $iPatient->client_name }}</span></a>
|
|
|
</td>
|
|
|
<td>{{$iPatient->mcp_name}}</td>
|
|
|
- <td>{{friendly_date($iPatient->dob)}}</td>
|
|
|
+ <td>{{$iPatient->age_in_years}}</td>
|
|
|
{{--<td>{!! $iPatient->is_enrolled_in_rm === 'YES' ? '<i class="fa fa-check text-success"></i>' : 'No' !!}</td>--}}
|
|
|
- <td>{!! $iPatient->is_assigned_cellular_bp_device ? '<i class="fa fa-check text-success"></i>' : 'No' !!}</td>
|
|
|
- <td>{!! $iPatient->is_assigned_cellular_weight_scale_device ? '<i class="fa fa-check text-success"></i>' : 'No' !!}</td>
|
|
|
<td>
|
|
|
- @if($iPatient->most_recent_cellular_bp_sbp_mm_hg && $iPatient->most_recent_cellular_bp_dbp_mm_hg)
|
|
|
- <div class="text-nowrap">
|
|
|
- <span class="sort-data">{{$iPatient->most_recent_cellular_bp_sbp_mm_hg ?: '-'}}</span>/{{$iPatient->most_recent_cellular_bp_dbp_mm_hg ?: '-'}}
|
|
|
- @if($iPatient->most_recent_cellular_bp_measurement_at)
|
|
|
- <span class="text-sm text-secondary text-nowrap ml-1"
|
|
|
- title="{{friendly_date_time($iPatient->most_recent_cellular_bp_measurement_at)}}">({{friendly_date_est($iPatient->most_recent_cellular_bp_measurement_at)}})</span>
|
|
|
- @endif
|
|
|
+ @if($iPatient->is_assigned_cellular_bp_device)
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
+ <i class="fa fa-check text-success"></i>
|
|
|
+ @if($iPatient->most_recent_cellular_bp_sbp_mm_hg && $iPatient->most_recent_cellular_bp_dbp_mm_hg)
|
|
|
+ <div class="text-nowrap ml-1">
|
|
|
+ <span class="sort-data">{{$iPatient->most_recent_cellular_bp_sbp_mm_hg ?: '-'}}</span>/{{$iPatient->most_recent_cellular_bp_dbp_mm_hg ?: '-'}}
|
|
|
+ @if($iPatient->most_recent_cellular_bp_measurement_at)
|
|
|
+ <span class="text-sm text-secondary text-nowrap"
|
|
|
+ title="{{friendly_date_time($iPatient->most_recent_cellular_bp_measurement_at)}}">{{friendly_date_est($iPatient->most_recent_cellular_bp_measurement_at)}}</span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
</div>
|
|
|
@else
|
|
|
- -
|
|
|
+ <span class="text-secondary">No</span>
|
|
|
@endif
|
|
|
</td>
|
|
|
<td>
|
|
|
- @if($iPatient->most_recent_cellular_weight_value)
|
|
|
- <div class="text-nowrap">
|
|
|
- <span class="sort-data">{{$iPatient->most_recent_cellular_weight_value ? round($iPatient->most_recent_cellular_weight_value, 1) : '-'}}</span>
|
|
|
- @if($iPatient->most_recent_cellular_weight_measurement_at)
|
|
|
- <span class="text-sm text-secondary text-nowrap ml-1"
|
|
|
- title="{{friendly_date_time($iPatient->most_recent_cellular_weight_measurement_at)}}">({{friendly_date_est($iPatient->most_recent_cellular_weight_measurement_at)}})</span>
|
|
|
+ @if($iPatient->is_assigned_cellular_weight_scale_device)
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
+ <i class="fa fa-check text-success"></i>
|
|
|
+ @if($iPatient->most_recent_cellular_weight_value)
|
|
|
+ <div class="text-nowrap ml-1">
|
|
|
+ <span class="sort-data">{{$iPatient->most_recent_cellular_weight_value ? round($iPatient->most_recent_cellular_weight_value, 1) : '-'}}</span>
|
|
|
+ @if($iPatient->most_recent_cellular_weight_measurement_at)
|
|
|
+ <span class="text-sm text-secondary text-nowrap"
|
|
|
+ title="{{friendly_date_time($iPatient->most_recent_cellular_weight_measurement_at)}}">{{friendly_date_est($iPatient->most_recent_cellular_weight_measurement_at)}}</span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
@endif
|
|
|
</div>
|
|
|
@else
|
|
|
- -
|
|
|
+ <span class="text-secondary">No</span>
|
|
|
@endif
|
|
|
</td>
|
|
|
-
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$lastVisitWithin90Days ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
@@ -81,7 +88,7 @@
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$iPatient->rm_total_time_in_seconds_by_mcp >= 1200 ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
- <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_mcp / 60)}}m {{round($iPatient->rm_total_time_in_seconds_by_mcp % 60)}}s</span>
|
|
|
+ <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_mcp / 60)}}:{{round($iPatient->rm_total_time_in_seconds_by_mcp % 60)}}</span>
|
|
|
<span class="sort-data d-none">{{$iPatient->rm_total_time_in_seconds_by_mcp}}</span>
|
|
|
</div>
|
|
|
</td>
|
|
@@ -89,7 +96,7 @@
|
|
|
<td>
|
|
|
<div class="d-flex align-items-baseline">
|
|
|
<i class="mr-1 text-sm fa {{$iPatient->rm_total_time_in_seconds_by_rmm_pro >= 1200 ? 'fa-check text-success' : 'fa-exclamation-triangle text-danger on-hover-opaque'}}"></i>
|
|
|
- <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_rmm_pro / 60)}}m {{round($iPatient->rm_total_time_in_seconds_by_rmm_pro % 60)}}s</span>
|
|
|
+ <span class="text-nowrap">{{round($iPatient->rm_total_time_in_seconds_by_rmm_pro / 60)}}:{{round($iPatient->rm_total_time_in_seconds_by_rmm_pro % 60)}}</span>
|
|
|
<span class="sort-data d-none">{{$iPatient->rm_total_time_in_seconds_by_rmm_pro}}</span>
|
|
|
</div>
|
|
|
</td>
|
|
@@ -97,8 +104,8 @@
|
|
|
<td>
|
|
|
@if($lastVisitWithin90Days && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_mcp >= 1200)
|
|
|
<span class="text-success">
|
|
|
- <i class="fa fa-check text-sm"></i>
|
|
|
- ${{friendly_money($pro->mcp_rpm_payment_amount, 0)}}
|
|
|
+ <i class="fa fa-check text-sm"></i>{{--
|
|
|
+ ${{friendly_money($pro->mcp_rpm_payment_amount, 0)}}--}}
|
|
|
</span>
|
|
|
@else
|
|
|
<span class="text-danger font-weight-normal">
|
|
@@ -109,8 +116,8 @@
|
|
|
<td>
|
|
|
@if($lastVisitWithin90Days && $iPatient->has_mcp_interacted_with_client_about_rm && $iPatient->number_of_days_with_remote_measurements >= 16 && $iPatient->rm_total_time_in_seconds_by_rmm_pro >= 1200)
|
|
|
<span class="text-success">
|
|
|
- <i class="fa fa-check text-sm"></i>
|
|
|
- ${{friendly_money($pro->rmm_payment_amount, 0)}}
|
|
|
+ <i class="fa fa-check text-sm"></i>{{--
|
|
|
+ ${{friendly_money($pro->rmm_payment_amount, 0)}}--}}
|
|
|
</span>
|
|
|
@else
|
|
|
<span class="text-danger font-weight-normal">
|
|
@@ -129,16 +136,16 @@
|
|
|
}
|
|
|
?>
|
|
|
@if($codeStatus === 'No')
|
|
|
- <span class="text-danger font-weight-normal">
|
|
|
+ <span class="text-nowrap text-danger font-weight-normal">
|
|
|
{{$codeStatus}}
|
|
|
</span>
|
|
|
@elseif($codeStatus === 'Ready')
|
|
|
- <span class="text-dark">
|
|
|
+ <span class="text-nowrap text-dark">
|
|
|
<i class="fa fa-thumbs-up text-sm"></i>
|
|
|
{{$codeStatus}}
|
|
|
</span>
|
|
|
@elseif($codeStatus === 'Billed')
|
|
|
- <span class="text-success">
|
|
|
+ <span class="text-nowrap text-success">
|
|
|
<i class="fa fa-check text-sm"></i>
|
|
|
{{$codeStatus}}
|
|
|
</span>
|
|
@@ -157,16 +164,16 @@
|
|
|
}
|
|
|
?>
|
|
|
@if($codeStatus === 'No')
|
|
|
- <span class="text-danger font-weight-normal">
|
|
|
+ <span class="text-nowrap text-danger font-weight-normal">
|
|
|
{{$codeStatus}}
|
|
|
</span>
|
|
|
@elseif($codeStatus === 'Ready')
|
|
|
- <span class="text-dark">
|
|
|
+ <span class="text-nowrap text-dark">
|
|
|
<i class="fa fa-thumbs-up text-sm"></i>
|
|
|
{{$codeStatus}}
|
|
|
</span>
|
|
|
@elseif($codeStatus === 'Billed')
|
|
|
- <span class="text-success">
|
|
|
+ <span class="text-nowrap text-success">
|
|
|
<i class="fa fa-check text-sm"></i>
|
|
|
{{$codeStatus}}
|
|
|
</span>
|