|
@@ -15,7 +15,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@if(count($measurements))
|
|
|
- <?php foreach($measurements as $measurement): ?>
|
|
|
+ <?php foreach($measurements as $measurement): ?>
|
|
|
<?php if(in_array($measurement->label, ['SBP', 'DBP']) ) continue; ?>
|
|
|
<tr>
|
|
|
<td class="px-2">
|
|
@@ -27,7 +27,7 @@
|
|
|
<td class="px-2">
|
|
|
@if(!$measurement->clientBDTMeasurement)
|
|
|
<div><b>{{ $measurement->value }}</b></div>
|
|
|
- @else
|
|
|
+ @else
|
|
|
<div>
|
|
|
@if($measurement->label == 'BP')
|
|
|
<div>
|
|
@@ -43,7 +43,7 @@
|
|
|
@endif
|
|
|
</td>
|
|
|
<td>
|
|
|
- {{$measurement->timestamp}}
|
|
|
+ {{$measurement->ts}}
|
|
|
</td>
|
|
|
<td class="px-2">
|
|
|
@if($measurement->careMonth)
|
|
@@ -51,14 +51,14 @@
|
|
|
@endif
|
|
|
</td>
|
|
|
<td colspan="px-2">
|
|
|
- @if($measurement->clientBdtMeasurement)
|
|
|
+ @if($measurement->clientBdtMeasurement)
|
|
|
<span moe large relative>
|
|
|
<a start show class="py-0 mb-3 font-weight-bold">Update status</a>
|
|
|
- <form url="/api/measurement/updateStatus" right>
|
|
|
+ <form url="/api/measurement/updateStatus" right>
|
|
|
<input type="hidden" name="uid" value="{{$measurement->uid}}">
|
|
|
<select name="status" id="" class="form-control input-sm">
|
|
|
<option value="">--select--</option>
|
|
|
- <option value="ACK">Ok</option>
|
|
|
+ <option value="ACK">Ok</option>
|
|
|
<option value="INVALID_ACK">Invalid</option>
|
|
|
</select>
|
|
|
<div class="d-flex align-items-center mt-2">
|
|
@@ -89,7 +89,7 @@
|
|
|
<span class="width-50px text-left text-secondary">Value</span>
|
|
|
@if(!$measurement->clientBDTMeasurement)
|
|
|
<div><b>{{ $measurement->value }}</b></div>
|
|
|
- @else
|
|
|
+ @else
|
|
|
<div>
|
|
|
@if($measurement->label == 'BP')
|
|
|
<div>
|
|
@@ -98,7 +98,7 @@
|
|
|
@endif
|
|
|
@if($measurement->label == 'Wt. (lbs.)')
|
|
|
<div>
|
|
|
- <b>{{ floor($measurement->clientBdtMeasurement->measurement->weight_in_pounds)}}</b> lbs
|
|
|
+ <b>{{ floor($measurement->clientBdtMeasurement->measurement->weight_in_pounds)}}</b> lbs
|
|
|
</div>
|
|
|
@endif
|
|
|
</div>
|