|
@@ -26,6 +26,20 @@
|
|
|
$cpc->auto_detail_json = json_decode($cpc->auto_detail_json);
|
|
|
@endphp
|
|
|
<div class="d-flex align-items-center mb-2">
|
|
|
+ @if($cpc->is_manually_determined)
|
|
|
+ <div>
|
|
|
+ <span class="d-inline bg-warning px-2 rounded mr-1"><i class="fas fa-map-pin"></i> Manually Determined</span>
|
|
|
+ @if($cpc->is_cancelled)
|
|
|
+ <span class="mr-1 text-danger text-sm">Cancelled</span>
|
|
|
+ @else
|
|
|
+ @include('app.patient.partials.undo-manual-determination')
|
|
|
+ @endif
|
|
|
+ <span class="mx-1 text-muted text-sm">|</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ @else
|
|
|
+
|
|
|
+ @endif
|
|
|
<h1 class="mr-2 mb-0">Is Covered: {{$cpc->is_covered}}</h1>
|
|
|
@if($cpc->plan_type == 'MEDICARE')
|
|
|
@include('app.patient.primary-coverage-refresh', ['endpoint'=>'refreshCoverageForMedicare'])
|
|
@@ -62,7 +76,7 @@
|
|
|
@endif
|
|
|
</div>
|
|
|
|
|
|
- <div class="mt-4">
|
|
|
+ <div class="mt-4 {{ $cpc->is_cancelled ? 'cpc-cancelled':'' }}">
|
|
|
<div class="row">
|
|
|
<div class="col-md-12">
|
|
|
@include('app.patient.primary-coverage-view')
|