|
@@ -89,7 +89,7 @@
|
|
|
<a native target="_blank" href="/patients/view/{{$row->client_uid}}/notes/view/{{$row->note_uid}}">
|
|
|
{{$row->client_first}} {{$row->client_last}}
|
|
|
</a>
|
|
|
- @if($row->plan_type)
|
|
|
+ {{--@if($row->plan_type)
|
|
|
<div>Plan Type: {{$row->plan_type}}</div>
|
|
|
@if($row->plan_type == 'MEDICARE')
|
|
|
@if($row->auto_medicare_is_partbprimary == 'YES')
|
|
@@ -109,7 +109,11 @@
|
|
|
Deductible: {{friendly_money($row->commercial_deductible)}}
|
|
|
</div>
|
|
|
@endif
|
|
|
- @endif
|
|
|
+ @endif--}}
|
|
|
+ <?php
|
|
|
+ $patient = \App\Models\Client::where('uid', $row->client_uid)->first();
|
|
|
+ ?>
|
|
|
+ @include('app.patient.coverage_column_renderer', ['patient'=>$patient])
|
|
|
</td>
|
|
|
<td class="text-nowrap border-left-0">
|
|
|
<a href="/patients/view/{{$row->client_uid}}/notes/view/{{$row->note_uid}}">
|