|
@@ -16,22 +16,30 @@
|
|
|
<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>
|
|
|
- <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
|
|
|
- </div>
|
|
|
+ @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
|
|
|
+ </div>
|
|
|
+ @else
|
|
|
+ -
|
|
|
+ @endif
|
|
|
</td>
|
|
|
<td>
|
|
|
- <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>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
+ @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>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ @else
|
|
|
+ -
|
|
|
+ @endif
|
|
|
</td>
|
|
|
|
|
|
<td>
|