|
@@ -79,11 +79,13 @@
|
|
|
<th class="border-bottom-0 border-top-0">Effective Date</th>
|
|
|
<th class="border-bottom-0 border-top-0">Bal Post Date</th>
|
|
|
@if(!request()->input('t') || request()->input('t') === 'hcp')
|
|
|
- <th class="border-bottom-0 border-top-0">HCP Pro</th>
|
|
|
+ <th class="border-bottom-0 border-top-0">Pro</th>
|
|
|
@elseif(request()->input('t') === 'na')
|
|
|
- <th class="border-bottom-0 border-top-0">NA Pro</th>
|
|
|
+ <th class="border-bottom-0 border-top-0">Pro</th>
|
|
|
@endif
|
|
|
<th class="border-bottom-0 border-top-0">Client</th>
|
|
|
+ <th class="border-bottom-0 border-top-0">Insurance</th>
|
|
|
+ <th class="border-bottom-0 border-top-0">State</th>
|
|
|
<th class="border-bottom-0 border-top-0">Code</th>
|
|
|
<th class="border-bottom-0 border-top-0">Units</th>
|
|
|
<th class="border-bottom-0 border-top-0">Verified?</th>
|
|
@@ -212,6 +214,14 @@
|
|
|
{{$row->client->name_last}}, {{$row->client->name_first}}
|
|
|
@endif
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ @include('app.patient.coverage_column_renderer', ['patient'=>$row->client])
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @if($row->client)
|
|
|
+ {{$row->client->mailing_address_state}}
|
|
|
+ @endif
|
|
|
+ </td>
|
|
|
<td>{{$row->code}}
|
|
|
@if($row->generic_target_entity_type && $row->generic_target_entity_uid)
|
|
|
<div class="mt-1 text-sm text-secondary">{{$row->generic_target_entity_type}}</div>
|