|
@@ -196,8 +196,8 @@
|
|
|
<label>Provider Status</label>
|
|
|
<select name="providerStatus" class="form-control" value="{{$cpc->provider_status ?? ''}}">
|
|
|
<option value=""></option>
|
|
|
- <option value="IN_NETWORK" @if($cpc->provider_status === 'IN_NETWORK') selected @endif>IN NETWORK</option>
|
|
|
- <option value="OUT_OF_NETWORK" @if($cpc->provider_status === 'OUT_OF_NETWORK') selected @endif>OUT_OF_NETWORK</option>
|
|
|
+ <option value="IN_NETWORK" @if($cpc && $cpc->provider_status && $cpc->provider_status === 'IN_NETWORK') selected @endif>IN NETWORK</option>
|
|
|
+ <option value="OUT_OF_NETWORK" @if($cpc && $cpc->provider_status && $cpc->provider_status === 'OUT_OF_NETWORK') selected @endif>OUT_OF_NETWORK</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -206,9 +206,9 @@
|
|
|
<label>Mental Health Coverage</label>
|
|
|
<select name="mentalHealthCoverage" class="form-control" value="{{$cpc->mental_health_coverage ?? ''}}">
|
|
|
<option value=""></option>
|
|
|
- <option value="YES" @if($cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>YES</option>
|
|
|
- <option value="NO" @if($cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>NO</option>
|
|
|
- <option value="UNKNOWN" @if($cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>UNKNOWN</option>
|
|
|
+ <option value="YES" @if($cpc && $cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>YES</option>
|
|
|
+ <option value="NO" @if($cpc && $cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>NO</option>
|
|
|
+ <option value="UNKNOWN" @if($cpc && $cpc->mental_health_coverage && $cpc->mental_health_coverage === 'YES') selected @endif>UNKNOWN</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -217,9 +217,9 @@
|
|
|
<label>Telehealth Coverage</label>
|
|
|
<select name="telehealthCoverage" class="form-control">
|
|
|
<option value=""></option>
|
|
|
- <option value="YES" @if($cpc->telehealth_coverage && $cpc->telehealth_coverage === 'YES') selected @endif>YES</option>
|
|
|
- <option value="NO" @if($cpc->telehealth_coverage && $cpc->telehealth_coverage === 'NO') selected @endif>NO</option>
|
|
|
- <option value="UNKNOWN" @if($cpc->telehealth_coverage && $cpc->telehealth_coverage === 'UNKNOWN') selected @endif>UNKNOWN</option>
|
|
|
+ <option value="YES" @if($cpc && $cpc->telehealth_coverage && $cpc->telehealth_coverage === 'YES') selected @endif>YES</option>
|
|
|
+ <option value="NO" @if($cpc && $cpc->telehealth_coverage && $cpc->telehealth_coverage === 'NO') selected @endif>NO</option>
|
|
|
+ <option value="UNKNOWN" @if($cpc && $cpc->telehealth_coverage && $cpc->telehealth_coverage === 'UNKNOWN') selected @endif>UNKNOWN</option>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|