|
@@ -29,6 +29,8 @@
|
|
|
<tr>
|
|
|
<th class="border-bottom-0 text-nowrap text-right pr-2">Visit #</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Name</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">MCP</th>
|
|
|
+ <th class="border-bottom-0 text-nowrap">NA</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Chart #</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Date</th>
|
|
|
<th class="border-bottom-0 text-nowrap">Note Link</th>
|
|
@@ -65,6 +67,8 @@
|
|
|
<tr>
|
|
|
<td class="text-nowrap text-right pr-2">{{$visitCount}}</td>
|
|
|
<td class="text-nowrap">{{$row->client_name}}</td>
|
|
|
+ <td class="text-nowrap">{{$row->mcp_name}}</td>
|
|
|
+ <td class="text-nowrap">{{$row->na_name}}</td>
|
|
|
<td class="text-nowrap">{{$row->chart_number}}</td>
|
|
|
<td class="text-nowrap">{{friendly_date($row->effective_dateest)}}</td>
|
|
|
<td class="text-nowrap">
|
|
@@ -76,7 +80,9 @@
|
|
|
<td class="font-weight-bold text-success">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'green' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
<td class="font-weight-bold text-danger">{!! @$parsedDetailJson->shawn_decision && @$parsedDetailJson->shawn_decision === 'red' ? '<i class="fa fa-times"></i> Rejected' : '' !!}</td>
|
|
|
<td class="font-weight-bold text-success">{!! @$parsedDetailJson->kyle_billed && @$parsedDetailJson->kyle_billed === 'yes' ? '<i class="fa fa-check"></i> Yes' : '' !!}</td>
|
|
|
- <td></td>
|
|
|
+ <td>
|
|
|
+ <a href="/patients/view/{{ $row->client_uid }}/notes/view/{{ $row->uid }}">Go to note</a>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|