|
@@ -1,120 +1,141 @@
|
|
|
<div class="row" id="rm-setup">
|
|
|
<div class="col-7">
|
|
|
- @if($pro->pro_type === 'ADMIN')
|
|
|
- <div class="mb-2">
|
|
|
- <div class="d-flex flex-wrap">
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <span class="mr-2 text-secondary">Eligible for RM?</span>
|
|
|
- <span class="mr-1">{{ ucwords($patient->is_eligible_for_rm ? $patient->is_eligible_for_rm : '-') }}</span>
|
|
|
- <div moe class="">
|
|
|
+ <div class="mb-2">
|
|
|
+ <div class="d-flex flex-wrap">
|
|
|
+ <div class="d-flex align-items-center">
|
|
|
+ <span class="mr-2 text-secondary">Eligible for RM?</span>
|
|
|
+ <span class="mr-1">{{ ucwords($patient->is_eligible_for_rm ? $patient->is_eligible_for_rm : '-') }}</span>
|
|
|
+ <div moe class="">
|
|
|
+ <a start show><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
+ <form url="/api/client/updateRmEligibility" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm mb-1 text-secondary">Is Eligible?</label>
|
|
|
+ <select name="isEligibleForRm"
|
|
|
+ class="form-control form-control-sm"
|
|
|
+ onchange="toggleDisabledAsNeeded(this, 'NO', 'not-eligible-for-rm')">
|
|
|
+ <option value="">-- Select Status --</option>
|
|
|
+ <option value="YES" {{ $patient->is_eligible_for_rm === 'YES' ? 'selected' : '' }}>YES</option>
|
|
|
+ <option value="NO" {{ $patient->is_eligible_for_rm === 'NO' ? 'selected' : '' }}>NO</option>
|
|
|
+ <option value="UNKNOWN" {{ $patient->is_eligible_for_rm === 'UNKNOWN' ? 'selected' : '' }}>UNKNOWN</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm mb-1 text-secondary">Why not eligible category</label>
|
|
|
+ <input type="text" class="not-eligible-for-rm form-control form-control-sm"
|
|
|
+ {{$patient->is_eligible_for_rm === 'NO' ? '' : 'disabled' }}
|
|
|
+ name="whyNotEligibleForRmCategory" value="{{$patient->why_not_eligible_for_rm_category}}">
|
|
|
+ </div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label class="text-sm mb-1 text-secondary">Why not eligible memo</label>
|
|
|
+ <input type="text" class="not-eligible-for-rm form-control form-control-sm"
|
|
|
+ {{$patient->is_eligible_for_rm === 'NO' ? '' : 'disabled' }}
|
|
|
+ name="whyNotEligibleForRmMemo" value="{{$patient->why_not_eligible_for_rm_memo}}">
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @if($patient->is_eligible_for_rm === 'NO')
|
|
|
+ <span class="ml-1 on-hover-show d-inline-block on-hover-opaque">
|
|
|
+ <i class="fa fa-info-circle"></i>
|
|
|
+ <div class="on-hover-content py-2 pl-3 text-nowrap text-dark" style="left:0;right:auto;">
|
|
|
+ <div>
|
|
|
+ <small class="text-sm"><b>Category:</b> {{$patient->why_not_eligible_for_rm_category ?: '-'}}</small>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <small class="text-sm"><b>Memo:</b> {{$patient->why_not_eligible_for_rm_memo ?: '-'}}</small>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </span>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ <span class="text-secondary mx-2">|</span>
|
|
|
+ <?php $currentCareMonth = $patient->currentCareMonth(); ?>
|
|
|
+ @if($currentCareMonth && $pro->id === $currentCareMonth->mcp_pro_id)
|
|
|
+ <?php $spoken = $currentCareMonth->has_anyone_interacted_with_client_about_rm_outside_note; ?>
|
|
|
+ {{--
|
|
|
+ <div class="d-flex align-items-center">
|
|
|
+ <span class="mr-1 text-secondary">Comm. this month:</span>
|
|
|
+ <span class="{{$spoken ? 'text-success' : ''}}">
|
|
|
+ {{$spoken ? 'Yes' : 'No'}}
|
|
|
+ @if(!$spoken)
|
|
|
+ <i class="fa fa-exclamation-triangle"></i>
|
|
|
+ @else
|
|
|
+ <i class="fa fa-check"></i>
|
|
|
+ @endif
|
|
|
+ </span>
|
|
|
+ @if($currentCareMonth->mcp && $pro->id === $currentCareMonth->mcp->id)
|
|
|
+ <div moe relative class="ml-1">
|
|
|
+ <a href="#" start show class=""><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
+ <form url="/api/careMonth/setHasAnyoneInteractedWithClientAboutRmOutsideNoteTo{{$spoken ? 'False' : 'True'}}" right>
|
|
|
+ <input type="hidden" name="uid" value="{{$currentCareMonth->uid}}">
|
|
|
+ <p>Set to {{$spoken ? 'No' : 'Yes'}}?</p>
|
|
|
+ <div class="d-flex align-items-center">
|
|
|
+ <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
+ <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ @endif
|
|
|
+ </div>
|
|
|
+ <span class="text-secondary mx-2 d-xlarge">|</span>--}}
|
|
|
+ @endif
|
|
|
+
|
|
|
+ <div class="d-flex align-items-center">
|
|
|
+ <span class="mr-1 text-secondary">Enrollment:</span>
|
|
|
+ <span>{{ ucwords($patient->is_enrolled_in_rm ? $patient->is_enrolled_in_rm : '-') }}</span>
|
|
|
+ @if($patient->is_enrolled_in_rm === 'YES')
|
|
|
+ <div moe class="ml-1">
|
|
|
<a start show><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
- <form url="/api/client/updateRmEligibility" class="mcp-theme-1">
|
|
|
+ <form url="/api/client/setIsEnrolledInRmToFalse" class="mcp-theme-1">
|
|
|
<input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm mb-1 text-secondary">Is Eligible?</label>
|
|
|
- <select name="isEligibleForRm"
|
|
|
- class="form-control form-control-sm"
|
|
|
- onchange="toggleDisabledAsNeeded(this, 'NO', 'not-eligible-for-rm')">
|
|
|
- <option value="">-- Select Status --</option>
|
|
|
- <option value="YES" {{ $patient->is_eligible_for_rm === 'YES' ? 'selected' : '' }}>YES</option>
|
|
|
- <option value="NO" {{ $patient->is_eligible_for_rm === 'NO' ? 'selected' : '' }}>NO</option>
|
|
|
- <option value="UNKNOWN" {{ $patient->is_eligible_for_rm === 'UNKNOWN' ? 'selected' : '' }}>UNKNOWN</option>
|
|
|
- </select>
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm mb-1 text-secondary">Why not eligible category</label>
|
|
|
- <input type="text" class="not-eligible-for-rm form-control form-control-sm"
|
|
|
- {{$patient->is_eligible_for_rm === 'NO' ? '' : 'disabled' }}
|
|
|
- name="whyNotEligibleForRmCategory" value="{{$patient->why_not_eligible_for_rm_category}}">
|
|
|
- </div>
|
|
|
- <div class="mb-2">
|
|
|
- <label class="text-sm mb-1 text-secondary">Why not eligible memo</label>
|
|
|
- <input type="text" class="not-eligible-for-rm form-control form-control-sm"
|
|
|
- {{$patient->is_eligible_for_rm === 'NO' ? '' : 'disabled' }}
|
|
|
- name="whyNotEligibleForRmMemo" value="{{$patient->why_not_eligible_for_rm_memo}}">
|
|
|
- </div>
|
|
|
+ <p>Un-enroll from RPM?</p>
|
|
|
<div>
|
|
|
<button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
<button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
|
- @if($patient->is_eligible_for_rm === 'NO')
|
|
|
- <span class="ml-1 on-hover-show d-inline-block on-hover-opaque">
|
|
|
- <i class="fa fa-info-circle"></i>
|
|
|
- <div class="on-hover-content py-2 pl-3 text-nowrap text-dark" style="left:0;right:auto;">
|
|
|
- <div>
|
|
|
- <small class="text-sm"><b>Category:</b> {{$patient->why_not_eligible_for_rm_category ?: '-'}}</small>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <small class="text-sm"><b>Memo:</b> {{$patient->why_not_eligible_for_rm_memo ?: '-'}}</small>
|
|
|
+ @else
|
|
|
+ <div moe wide class="ml-2">
|
|
|
+ <a start show><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
+ <form url="/api/client/setIsEnrolledInRmToTrue" class="mcp-theme-1">
|
|
|
+ <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
+ <h2>RPM Enrollment:</h2>
|
|
|
+ <h3>Please confirm the following with patient:</h3>
|
|
|
+ <p class="mb-2">I understand that:</p>
|
|
|
+ <ul style="list-style:none;" class="pl-2">
|
|
|
+ <li class="d-flex mb-1">
|
|
|
+ <input type="checkbox" required="true" class="mt-1 mr-2" id="x" name="x">
|
|
|
+ <label class="c-pointer" for="x">I am the only person who should be using the remote monitoring equipment as instructed. I will
|
|
|
+ not use the device for reasons other than my own personal health monitoring. I understand that
|
|
|
+ I can only participate in this program with one Medical Provider at a time.</label>
|
|
|
+ </li>
|
|
|
+ <li class="d-flex mb-1">
|
|
|
+ <input type="checkbox" required="true" class="mt-1 mr-2" id="y" name="y">
|
|
|
+ <label class="c-pointer" for="y">I will not tamper with the equipment. I understand that I am responsible for any fees associated
|
|
|
+ with misuse of the equipment.</label>
|
|
|
+ </li>
|
|
|
+ <li class="d-flex mb-1">
|
|
|
+ <input type="checkbox" required="true" class="mt-1 mr-2" id="z" name="z">
|
|
|
+ <label class="c-pointer" for="z">I understand the devices are only designed for the RPM program.</label>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+
|
|
|
+ <div class="mb-2">
|
|
|
+ <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
+ <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- </span>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- <span class="text-secondary mx-2">|</span>
|
|
|
- <?php $currentCareMonth = $patient->currentCareMonth(); ?>
|
|
|
- @if($currentCareMonth && $pro->id === $currentCareMonth->mcp_pro_id)
|
|
|
- <?php $spoken = $currentCareMonth->has_anyone_interacted_with_client_about_rm_outside_note; ?>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <span class="mr-1 text-secondary">Comm. this month:</span>
|
|
|
- <span class="{{$spoken ? 'text-success' : ''}}">
|
|
|
- {{$spoken ? 'Yes' : 'No'}}
|
|
|
- @if(!$spoken)
|
|
|
- <i class="fa fa-exclamation-triangle"></i>
|
|
|
- @else
|
|
|
- <i class="fa fa-check"></i>
|
|
|
- @endif
|
|
|
- </span>
|
|
|
- @if($currentCareMonth->mcp && $pro->id === $currentCareMonth->mcp->id)
|
|
|
- <div moe relative class="ml-1">
|
|
|
- <a href="#" start show class=""><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
- <form url="/api/careMonth/setHasAnyoneInteractedWithClientAboutRmOutsideNoteTo{{$spoken ? 'False' : 'True'}}" right>
|
|
|
- <input type="hidden" name="uid" value="{{$currentCareMonth->uid}}">
|
|
|
- <p>Set to {{$spoken ? 'No' : 'Yes'}}?</p>
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
|
|
|
- <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
- <span class="text-secondary mx-2 d-xlarge">|</span>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
@endif
|
|
|
-
|
|
|
- <div class="d-flex align-items-center">
|
|
|
- <span class="mr-1 text-secondary">Enrollment:</span>
|
|
|
- <span>{{ ucwords($patient->is_enrolled_in_rm ? $patient->is_enrolled_in_rm : '-') }}</span>
|
|
|
- @if($patient->is_enrolled_in_rm === 'YES')
|
|
|
- <div moe class="ml-1">
|
|
|
- <a start show><i class="fa fa-edit on-hover-opaque"></i></a>
|
|
|
- <form url="/api/client/setIsEnrolledInRmToFalse" class="mcp-theme-1">
|
|
|
- <input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
|
- <p>Un-enroll from RPM?</p>
|
|
|
- <div>
|
|
|
- <button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|
|
|
- <button cancel class="btn btn-sm btn-default border">Cancel</button>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- @else
|
|
|
- <a native target="_blank"
|
|
|
- class="screen-only ml-2"
|
|
|
- open-in-stag-popup
|
|
|
- popup-style="medium overflow-visible"
|
|
|
- mc-initer="rpm-agreement-{{$note->id}}"
|
|
|
- title="Leadership Health Remote Patient Monitoring Consent Form"
|
|
|
- href="/note/rpm-agreement/{{$note->uid}}?popupmode=1">
|
|
|
- Mark as enrolled
|
|
|
- </a>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
- @endif
|
|
|
+
|
|
|
+ </div>
|
|
|
|
|
|
<div class="d-flex align-items-baseline mb-1">
|
|
|
<div class="flex-grow-1">
|
|
@@ -318,164 +339,12 @@
|
|
|
</table>
|
|
|
</div>
|
|
|
@endif
|
|
|
- <div class="border-top mt-1 pt-2">
|
|
|
+ {{--<div class="border-top mt-1 pt-2">
|
|
|
@include('app.patient.partials.client_bp_weight_phone_number_status')
|
|
|
- </div>
|
|
|
+ </div>--}}
|
|
|
|
|
|
</div>
|
|
|
- <div class="col-5 border-left">
|
|
|
- <?php
|
|
|
- $bpDevice = null;
|
|
|
- $weightScale = null;
|
|
|
- if(count($patient->devices)) {
|
|
|
- foreach($patient->devices as $device) {
|
|
|
- if(!$bpDevice && $device->device->category === 'BP') {
|
|
|
- $bpDevice = $device;
|
|
|
- }
|
|
|
- elseif(!$weightScale && $device->device->category === 'WEIGHT') {
|
|
|
- $weightScale = $device;
|
|
|
- }
|
|
|
- if($bpDevice && $weightScale) break;
|
|
|
- }
|
|
|
- }
|
|
|
- $bpMeasurements = [];
|
|
|
- if($bpDevice) {
|
|
|
- $bpMeasurements["first"] = \App\Models\Measurement
|
|
|
- ::where('imei', $bpDevice->device->imei)
|
|
|
- ->where('client_id', $patient->id)
|
|
|
- ->where('is_cellular_zero', false)
|
|
|
- ->orderBy('ts')
|
|
|
- ->first();
|
|
|
- $bpMeasurements["last"] = \App\Models\Measurement
|
|
|
- ::where('imei', $bpDevice->device->imei)
|
|
|
- ->where('client_id', $patient->id)
|
|
|
- ->where('is_cellular_zero', false)
|
|
|
- ->orderBy('ts', 'DESC')
|
|
|
- ->first();
|
|
|
- }
|
|
|
- $weightMeasurements = [];
|
|
|
- if($weightScale) {
|
|
|
- $weightMeasurements["first"] = \App\Models\Measurement
|
|
|
- ::where('imei', $weightScale->device->imei)
|
|
|
- ->where('client_id', $patient->id)
|
|
|
- ->where('is_cellular_zero', false)
|
|
|
- ->orderBy('ts')
|
|
|
- ->first();
|
|
|
- $weightMeasurements["last"] = \App\Models\Measurement
|
|
|
- ::where('imei', $weightScale->device->imei)
|
|
|
- ->where('client_id', $patient->id)
|
|
|
- ->where('is_cellular_zero', false)
|
|
|
- ->orderBy('ts', 'DESC')
|
|
|
- ->first();
|
|
|
- }
|
|
|
- $careMonth = $patient->currentCareMonth();
|
|
|
- ?>
|
|
|
-
|
|
|
- @if($bpDevice)
|
|
|
- <div class="mb-2">
|
|
|
- <table class="table table-sm table-bordered mb-0">
|
|
|
- <tr class="bg-light">
|
|
|
- <td class="text-secondary" style="width: 125px;">Cellular BP Device</td>
|
|
|
- <td colspan="2">Yes <i>({{$bpDevice->device->imei}})</i></td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">Arrived</td>
|
|
|
- <td colspan="2">Yes</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">First Meas.</td>
|
|
|
- @if($bpMeasurements["first"])
|
|
|
- <td class="">{{ $bpMeasurements["first"]->sbp_mm_hg . '/' . $bpMeasurements["first"]->dbp_mm_hg . '' }}</td>
|
|
|
- <td class="">{{friendly_date_short(date("Y-m-d", $bpMeasurements["first"]->ts/1000))}} <i class="text-muted">- {{date_diff(date_create(date("Y-m-d", $bpMeasurements["first"]->ts/1000)), date_create('now'))->days}} <small class="text-sm">days ago</small></i></td>
|
|
|
- @else
|
|
|
- <td colspan="3">-</td>
|
|
|
- @endif
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">Last Meas.</td>
|
|
|
- @if($bpMeasurements["last"])
|
|
|
- <td>{{ $bpMeasurements["last"]->sbp_mm_hg . '/' . $bpMeasurements["last"]->dbp_mm_hg . '' }}</td>
|
|
|
- <td>{{friendly_date_short(date("Y-m-d", $bpMeasurements["last"]->ts/1000))}} <i class="text-muted">- {{date_diff(date_create(date("Y-m-d", $bpMeasurements["last"]->ts/1000)), date_create('now'))->days}} <small class="text-sm">days ago</small></i></td>
|
|
|
- @else
|
|
|
- <td colspan="3">-</td>
|
|
|
- @endif
|
|
|
- </tr>
|
|
|
- {{--
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">How often to measure</td>
|
|
|
- <td colspan="2">-</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">SMS reminders</td>
|
|
|
- <td colspan="2">-</td>
|
|
|
- </tr>
|
|
|
- --}}
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- @else
|
|
|
- <div class="d-flex align-items-baseline mb-3">
|
|
|
- <span class="min-width-200px">Cellular BP Device</span>
|
|
|
- <b class="ml-3">No</b>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
-
|
|
|
- @if($weightScale)
|
|
|
- <div class="mb-2">
|
|
|
- <table class="table table-sm table-bordered mb-0">
|
|
|
- <tr class="bg-light">
|
|
|
- <td class="text-secondary">Cellular Wt. Scale</td>
|
|
|
- <td colspan="3">Yes <i>({{$weightScale->device->imei}})</i></td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">Arrived</td>
|
|
|
- <td colspan="3">Yes</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">First Meas.</td>
|
|
|
- @if($weightMeasurements["first"])
|
|
|
- <td>{{ round($weightMeasurements["first"]->value, 2) . ' lbs' }}</td>
|
|
|
- <td colspan="2">{{ friendly_date_short(date("Y-m-d", $weightMeasurements["first"]->ts/1000)) }} <i class="text-muted">- {{date_diff(date_create(date("Y-m-d", $weightMeasurements["first"]->ts/1000)), date_create('now'))->days}} <small class="text-asm">days ago</small></i></td>
|
|
|
- @else
|
|
|
- <td colspan="4"></td>
|
|
|
- @endif
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">Last Meas.</td>
|
|
|
- @if($weightMeasurements["last"])
|
|
|
- <td>{{ round($weightMeasurements["last"]->value, 2) . ' lbs' }}</td>
|
|
|
- <td>{{ friendly_date_short(date("Y-m-d", $weightMeasurements["last"]->ts/1000)) }} <i class="text-muted">- {{date_diff(date_create(date("Y-m-d", $weightMeasurements["last"]->ts/1000)), date_create('now'))->days}} <small class="text-sm">days ago</small></i></td>
|
|
|
- @else
|
|
|
- <td colspan="4">-</td>
|
|
|
- @endif
|
|
|
- </tr>
|
|
|
- {{--
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">How often to measure</td>
|
|
|
- <td colspan="3">-</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="text-secondary">SMS reminders:</td>
|
|
|
- <td colspan="3">-</td>
|
|
|
- </tr>
|
|
|
- --}}
|
|
|
- </table>
|
|
|
- </div>
|
|
|
- @else
|
|
|
- <div class="d-flex align-items-baseline mb-3">
|
|
|
- <span class="min-width-200px">Cellular Weight Scale</span>
|
|
|
- <b class="ml-3">No</b>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
|
|
|
- @if($careMonth && ($bpDevice || $weightScale))
|
|
|
- <div class="d-flex align-items-baseline mb-1">
|
|
|
- <span class="min-width-200px">Measurement days this month:</span>
|
|
|
- <div class="ml-3">
|
|
|
- <b>{{$careMonth->number_of_days_with_remote_measurements}} days</b>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- @endif
|
|
|
- </div>
|
|
|
</div>
|
|
|
<script>
|
|
|
(function () {
|