|
@@ -14,24 +14,19 @@
|
|
|
<table class="table table-sm table-condensed p-0 m-0" style="">
|
|
|
<thead class="bg-light">
|
|
|
<tr>
|
|
|
- <th>name</th>
|
|
|
- <th>dob</th>
|
|
|
- <th>mcp</th>
|
|
|
- <th>most_recent_cellular_bp_battery_voltage</th>
|
|
|
- <th>most_recent_cellular_bp_dbp_mm_hg</th>
|
|
|
- <th>most_recent_cellular_bp_measurement_at</th>
|
|
|
- <th>most_recent_cellular_bp_measurement_id</th>
|
|
|
- <th>most_recent_cellular_bp_sbp_mm_hg</th>
|
|
|
- <th>most_recent_cellular_bp_signal_strength</th>
|
|
|
- <th>most_recent_cellular_bp_value_irregular</th>
|
|
|
- <th>most_recent_cellular_bp_value_pulse</th>
|
|
|
- <th>most_recent_cellular_measurement_at</th>
|
|
|
- <th>most_recent_cellular_measurement_id</th>
|
|
|
- <th>most_recent_cellular_weight_battery_voltage</th>
|
|
|
- <th>most_recent_cellular_weight_measurement_at</th>
|
|
|
- <th>most_recent_cellular_weight_measurement_id</th>
|
|
|
- <th>most_recent_cellular_weight_signal_strength</th>
|
|
|
- <th>most_recent_cellular_weight_value</th>
|
|
|
+ <th>Name</th>
|
|
|
+ <th>DOB</th>
|
|
|
+ <th>MCP</th>
|
|
|
+ <th>Recent BP</th>
|
|
|
+ <th> <i class="fa fa-heartbeat"></i> </th>
|
|
|
+ <th>Recent Pulse</th>
|
|
|
+ <th>Recent BP/Pulse Timestamp</th>
|
|
|
+ <th>BP <i class="fa fa-battery"></i></th>
|
|
|
+ <th>BP <i class="fa fa-broadcast-tower"></i> signal</th>
|
|
|
+ <th>Recent Weight</th>
|
|
|
+ <th>Recent Weight Timestamp</th>
|
|
|
+ <th>Scale <i class="fa fa-battery"></i></th>
|
|
|
+ <th>Scale <i class="fa fa-broadcast-tower"></i> signal</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -40,21 +35,20 @@
|
|
|
<td>{{ $client->name_last }}, {{ $client->name_first }}</td>
|
|
|
<td>{{ $client->dob }}</td>
|
|
|
<td>{{ $client->mcp->name_display ?? '--' }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_battery_voltage }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_dbp_mm_hg }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_measurement_at }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_measurement_id }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_sbp_mm_hg }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_bp_signal_strengtd }}</td>
|
|
|
+ <td>
|
|
|
+ {{ $client->most_recent_cellular_bp_sbp_mm_hg }}
|
|
|
+ /
|
|
|
+ {{ $client->most_recent_cellular_bp_dbp_mm_hg }} mm Hg
|
|
|
+ </td>
|
|
|
<td>{{ $client->most_recent_cellular_bp_value_irregular }}</td>
|
|
|
<td>{{ $client->most_recent_cellular_bp_value_pulse }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_measurement_at }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_measurement_id }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_weight_battery_voltage }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_measurement_at }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_battery_voltage }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_bp_signal_strength }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_value }}</td>
|
|
|
<td>{{ $client->most_recent_cellular_weight_measurement_at }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_weight_measurement_id }}</td>
|
|
|
+ <td>{{ $client->most_recent_cellular_weight_battery_voltage }}</td>
|
|
|
<td>{{ $client->most_recent_cellular_weight_signal_strengtd }}</td>
|
|
|
- <td>{{ $client->most_recent_cellular_weight_value }}</td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|