|
@@ -7,7 +7,7 @@
|
|
<div class="d-flex align-items-center">
|
|
<div class="d-flex align-items-center">
|
|
<p class="mb-0 mr-2 text-secondary">Has patient stored #s?</p>
|
|
<p class="mb-0 mr-2 text-secondary">Has patient stored #s?</p>
|
|
<span class="mr-2">
|
|
<span class="mr-2">
|
|
- @if($patient->clientBpWeightPhoneNumberStatus->has_client_saved_bp_phone_number)
|
|
|
|
|
|
+ @if(@$patient->clientBpWeightPhoneNumberStatus->has_client_saved_bp_phone_number)
|
|
<i class="fas fa-check-square text-success on-hover-opaque"></i>
|
|
<i class="fas fa-check-square text-success on-hover-opaque"></i>
|
|
@else
|
|
@else
|
|
<i class="far fa-square text-secondary on-hover-opaque"></i>
|
|
<i class="far fa-square text-secondary on-hover-opaque"></i>
|
|
@@ -15,7 +15,7 @@
|
|
BP
|
|
BP
|
|
</span>
|
|
</span>
|
|
<span class="mr-2">
|
|
<span class="mr-2">
|
|
- @if($patient->clientBpWeightPhoneNumberStatus->has_client_saved_weight_phone_number)
|
|
|
|
|
|
+ @if(@$patient->clientBpWeightPhoneNumberStatus->has_client_saved_weight_phone_number)
|
|
<i class="fas fa-check-square text-success on-hover-opaque"></i>
|
|
<i class="fas fa-check-square text-success on-hover-opaque"></i>
|
|
@else
|
|
@else
|
|
<i class="far fa-square text-secondary on-hover-opaque"></i>
|
|
<i class="far fa-square text-secondary on-hover-opaque"></i>
|
|
@@ -28,7 +28,7 @@
|
|
<form url="/api/client/updateClientBpWeightPhoneNumberStatus" class="mcp-theme-1">
|
|
<form url="/api/client/updateClientBpWeightPhoneNumberStatus" class="mcp-theme-1">
|
|
<input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
<input type="hidden" name="uid" value="{{$patient->uid}}">
|
|
<div class="mb-2 checkbox">
|
|
<div class="mb-2 checkbox">
|
|
- <input type="checkbox" name="hasClientSavedBpPhoneNumber" <?= $patient->clientBpWeightPhoneNumberStatus->has_client_saved_bp_phone_number ? 'checked':'' ?>>
|
|
|
|
|
|
+ <input type="checkbox" name="hasClientSavedBpPhoneNumber" <?= @$patient->clientBpWeightPhoneNumberStatus->has_client_saved_bp_phone_number ? 'checked':'' ?>>
|
|
<label class="mb-1 text-secondary text-sm">Has client saved bp phone number?</label>
|
|
<label class="mb-1 text-secondary text-sm">Has client saved bp phone number?</label>
|
|
</div>
|
|
</div>
|
|
<div class="mb-2 d-none">
|
|
<div class="mb-2 d-none">
|
|
@@ -36,7 +36,7 @@
|
|
<input type="text" name="savedBpPhoneNumber" class="form-control form-control-sm" value="{{ format_phone_number(config('app.bpSmsNumber')) }}">
|
|
<input type="text" name="savedBpPhoneNumber" class="form-control form-control-sm" value="{{ format_phone_number(config('app.bpSmsNumber')) }}">
|
|
</div>
|
|
</div>
|
|
<div class="mb-2 checkbox">
|
|
<div class="mb-2 checkbox">
|
|
- <input type="checkbox" name="hasClientSavedWeightPhoneNumber" <?= $patient->clientBpWeightPhoneNumberStatus->has_client_saved_weight_phone_number ? 'checked':'' ?>>
|
|
|
|
|
|
+ <input type="checkbox" name="hasClientSavedWeightPhoneNumber" <?= @$patient->clientBpWeightPhoneNumberStatus->has_client_saved_weight_phone_number ? 'checked':'' ?>>
|
|
<label class="mb-1 text-secondary text-sm">Has client saved weight phone number?</label>
|
|
<label class="mb-1 text-secondary text-sm">Has client saved weight phone number?</label>
|
|
</div>
|
|
</div>
|
|
<div class="mb-2 d-none">
|
|
<div class="mb-2 d-none">
|