|
@@ -182,19 +182,19 @@
|
|
|
<div class="col-md-12">
|
|
|
<div class="form-group">
|
|
|
<label>Plan Effective Date</label>
|
|
|
- <input type="date" name="planEffectiveDate" class="form-control" value="{{$cpc->plan_effective_date}}" />
|
|
|
+ <input type="date" name="planEffectiveDate" class="form-control" value="{{$cpc->plan_effective_date ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-12">
|
|
|
<div class="form-group">
|
|
|
<label>Plan Description</label>
|
|
|
- <textarea name="planDescription" class="form-control" value="{{$cpc->plan_description}}"></textarea>
|
|
|
+ <textarea name="planDescription" class="form-control" value="{{$cpc->plan_description ?? ''}}"></textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Provider Status</label>
|
|
|
- <select name="providerStatus" class="form-control" value="{{$cpc->provider_status}}">
|
|
|
+ <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>
|
|
@@ -204,11 +204,11 @@
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Mental Health Coverage</label>
|
|
|
- <select name="mentalHealthCoverage" class="form-control" value="{{$cpc->mental_health_coverage}}">
|
|
|
+ <select name="mentalHealthCoverage" class="form-control" value="{{$cpc->mental_health_coverage ?? ''}}">
|
|
|
<option value=""></option>
|
|
|
- <option value="YES" @if($cpc->mental_health_coverage === 'YES') selected @endif>YES</option>
|
|
|
- <option value="NO" @if($cpc->mental_health_coverage === 'YES') selected @endif>NO</option>
|
|
|
- <option value="UNKNOWN" @if($cpc->mental_health_coverage === 'YES') selected @endif>UNKNOWN</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>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -217,40 +217,40 @@
|
|
|
<label>Telehealth Coverage</label>
|
|
|
<select name="telehealthCoverage" class="form-control">
|
|
|
<option value=""></option>
|
|
|
- <option value="YES" @if($cpc->telehealth_coverage === 'YES') selected @endif>YES</option>
|
|
|
- <option value="NO" @if($cpc->telehealth_coverage === 'NO') selected @endif>NO</option>
|
|
|
- <option value="UNKNOWN" @if($cpc->telehealth_coverage === 'UNKNOWN') selected @endif>UNKNOWN</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>
|
|
|
</select>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Deductible Amount</label>
|
|
|
- <input type="number" name="deductibleAmount" class="form-control" value="{{$cpc->deductible_amount}}" />
|
|
|
+ <input type="number" name="deductibleAmount" class="form-control" value="{{$cpc->deductible_amount ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Family Deductible</label>
|
|
|
- <input type="number" name="familyDeductible" class="form-control" value="{{$cpc->family_deductible}}" />
|
|
|
+ <input type="number" name="familyDeductible" class="form-control" value="{{$cpc->family_deductible ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Member Accumulated Total</label>
|
|
|
- <input type="number" name="memberAccumulatedTotal" class="form-control" value="{{$cpc->member_accumulated_total}}" />
|
|
|
+ <input type="number" name="memberAccumulatedTotal" class="form-control" value="{{$cpc->member_accumulated_total ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Total Individual Balance</label>
|
|
|
- <input type="number" name="totalIndividualBalance" class="form-control" value="{{$cpc->total_individual_balance}}" />
|
|
|
+ <input type="number" name="totalIndividualBalance" class="form-control" value="{{$cpc->total_individual_balance ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-md-6">
|
|
|
<div class="form-group">
|
|
|
<label>Total Family Balance</label>
|
|
|
- <input type="number" name="totalFamilyBalance" class="form-control" value="{{$cpc->total_family_balance}}" />
|
|
|
+ <input type="number" name="totalFamilyBalance" class="form-control" value="{{$cpc->total_family_balance ?? ''}}" />
|
|
|
</div>
|
|
|
</div>
|
|
|
|