|
@@ -13,52 +13,52 @@
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th> </th>
|
|
|
-<th>Imei</th>
|
|
|
-<th>Ts</th>
|
|
|
+<th>Created At</th>
|
|
|
+<th>Type</th>
|
|
|
<th>Battery Voltage</th>
|
|
|
+<th>Device Category</th>
|
|
|
+<th>Device Id</th>
|
|
|
+<th>Diastolic Bp In Mm Hg</th>
|
|
|
+<th>Imei</th>
|
|
|
+<th>Rssi</th>
|
|
|
<th>Signal Strength</th>
|
|
|
-<th>Value Tare</th>
|
|
|
-<th>Value Weight</th>
|
|
|
-<th>Weight In Pounds</th>
|
|
|
-<th>Value Systolic</th>
|
|
|
+<th>Systolic Bp In Mm Hg</th>
|
|
|
+<th>Ts</th>
|
|
|
<th>Value Diastolic</th>
|
|
|
+<th>Value Irregular</th>
|
|
|
<th>Value Pulse</th>
|
|
|
+<th>Value Systolic</th>
|
|
|
+<th>Value Tare</th>
|
|
|
<th>Value Unit</th>
|
|
|
-<th>Value Irregular</th>
|
|
|
-<th>Rssi</th>
|
|
|
-<th>Device Id</th>
|
|
|
-<th>Device Category</th>
|
|
|
-<th>Created At</th>
|
|
|
+<th>Value Weight</th>
|
|
|
+<th>Weight In Pounds</th>
|
|
|
<th>Created By Session Id</th>
|
|
|
-<th>Type</th>
|
|
|
-<th>Diastolic Bp In Mm Hg</th>
|
|
|
-<th>Systolic Bp In Mm Hg</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($records as $record)
|
|
|
<tr>
|
|
|
<td><a href="/bdt_measurements/view/<?= $record->uid ?>"><i class="fas fa-share-square"></i></a></td>
|
|
|
-<td><?= $record->imei ?></td>
|
|
|
-<td><?= $record->ts ?></td>
|
|
|
+<td><?= friendly_date_time($record->created_at) ?></td>
|
|
|
+<td><?= $record->type ?></td>
|
|
|
<td><?= $record->battery_voltage ?></td>
|
|
|
+<td><?= $record->device_category ?></td>
|
|
|
+<td><?= $record->device_id ?></td>
|
|
|
+<td><?= $record->diastolic_bp_in_mm_hg ?></td>
|
|
|
+<td><?= $record->imei ?></td>
|
|
|
+<td><?= $record->rssi ?></td>
|
|
|
<td><?= $record->signal_strength ?></td>
|
|
|
-<td><?= $record->value_tare ?></td>
|
|
|
-<td><?= $record->value_weight ?></td>
|
|
|
-<td><?= $record->weight_in_pounds ?></td>
|
|
|
-<td><?= $record->value_systolic ?></td>
|
|
|
+<td><?= $record->systolic_bp_in_mm_hg ?></td>
|
|
|
+<td><?= $record->ts ?></td>
|
|
|
<td><?= $record->value_diastolic ?></td>
|
|
|
+<td><?= $record->value_irregular ?></td>
|
|
|
<td><?= $record->value_pulse ?></td>
|
|
|
+<td><?= $record->value_systolic ?></td>
|
|
|
+<td><?= $record->value_tare ?></td>
|
|
|
<td><?= $record->value_unit ?></td>
|
|
|
-<td><?= $record->value_irregular ?></td>
|
|
|
-<td><?= $record->rssi ?></td>
|
|
|
-<td><?= $record->device_id ?></td>
|
|
|
-<td><?= $record->device_category ?></td>
|
|
|
-<td><?= friendly_date_time($record->created_at) ?></td>
|
|
|
+<td><?= $record->value_weight ?></td>
|
|
|
+<td><?= $record->weight_in_pounds ?></td>
|
|
|
<td><?= $record->created_by_session_id ?></td>
|
|
|
-<td><?= $record->type ?></td>
|
|
|
-<td><?= $record->diastolic_bp_in_mm_hg ?></td>
|
|
|
-<td><?= $record->systolic_bp_in_mm_hg ?></td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|