|
@@ -1,7 +1,6 @@
|
|
|
@extends ('layouts.patient')
|
|
|
|
|
|
@section('inner-content')
|
|
|
-
|
|
|
<div id="client-settings-container">
|
|
|
<h4 class="font-size-16 m-0 mb-3">Settings</h4>
|
|
|
<div class="row">
|
|
@@ -27,6 +26,7 @@
|
|
|
<option {{ $patient->client_engagement_status_category === 'DUPLICATE' ? 'selected' : '' }} value="DUPLICATE">Duplicate</option>
|
|
|
<option {{ $patient->client_engagement_status_category === 'NO_LONGER_INTERESTED' ? 'selected' : '' }} value="NO_LONGER_INTERESTED">No Longer Interested</option>
|
|
|
<option {{ $patient->client_engagement_status_category === 'BAD_RECORD' ? 'selected' : '' }} value="BAD_RECORD">Bad Record</option>
|
|
|
+ <option {{ $patient->client_engagement_status_category === 'NO_LONGER_ELIGIBLE' ? 'selected' : '' }} value="NO_LONGER_ELIGIBLE">No Longer Eligible</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
@@ -488,6 +488,9 @@
|
|
|
<div class="mb-1">
|
|
|
RD Pro: <b>{{ $patient->rd->name_display ?? ''}}</b>
|
|
|
</div>
|
|
|
+ <div class="mb-1">
|
|
|
+ Physician Pro: <b>{{ $patient->pcp->rd->name_display ?? ''}}</b>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<hr class="m-negator-3 my-3">
|
|
@@ -837,6 +840,7 @@
|
|
|
<option {{$patient->client_engagement_status_category == 'DUPLICATE' ? 'selected' :''}} value="DUPLICATE">DUPLICATE</option>
|
|
|
<option {{$patient->client_engagement_status_category == 'NO_LONGER_INTERESTED' ? 'selected' :''}} value="NO_LONGER_INTERESTED">NO_LONGER_INTERESTED</option>
|
|
|
<option {{$patient->client_engagement_status_category == 'BAD_RECORD' ? 'selected' :''}} value="BAD_RECORD">BAD_RECORD</option>
|
|
|
+ <option {{ $patient->client_engagement_status_category === 'NO_LONGER_ELIGIBLE' ? 'selected' : '' }} value="NO_LONGER_ELIGIBLE">No Longer Eligible</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
<div class="form-group">
|