logicpowerhouse 4 vuotta sitten
vanhempi
commit
743e6ffa0a

+ 11 - 1
resources/views/app/practice-management/processing-bill-matrix.blade.php

@@ -9,7 +9,7 @@
             <div class="card-header px-3 py-2 d-flex align-items-center">
                 <strong class="mr-4">
                     <i class="fas fa-user-injured"></i>
-                    HCP Bill Matrix
+                    Processing Bills
                 </strong>
                 <select class="ml-auto max-width-300px form-control form-control-sm"
                         onchange="fastLoad('/practice-management/processing-bill-matrix/' + this.value, true, false, false)">
@@ -24,6 +24,11 @@
                     <thead class="bg-light">
                     <tr>
                         <th>Note Link</th>
+                        <td>Effective Date</td>
+                        <td>Client</td>
+                        <td>Code</td>
+                        <td>Units</td>
+                        <td>HCP Expected Amount</td>
                     </tr>
                     </thead>
                     <tbody>
@@ -34,6 +39,11 @@
                                     Note Link
                                 </a>
                             </td>
+                            <td>{{$row->effective_date}}</td>
+                            <td>{{$row->client->name_last}}, {{$row->client->name_first}}</td>
+                            <td>{{$row->code}}</td>
+                            <td>{{$row->number_of_units}}</td>
+                            <td>{{$row->hcp_expected_payment_amount}}</td>
                         </tr>
                     @endforeach
                     </tbody>

+ 1 - 0
resources/views/layouts/template.blade.php

@@ -116,6 +116,7 @@
                         <a class="dropdown-item" href="{{ route('practice-management.billingManager') }}">Billing Manager</a>
 
                         @if($pro && $pro->pro_type == 'ADMIN')
+                            <a class="dropdown-item" href="{{ route('practice-management.processingBillMatrix') }}">Processing Bills</a>
                             <a class="dropdown-item" href="{{ route('practice-management.cellularMeasurements') }}">Cellular Measurements</a>
                             <a class="dropdown-item" href="{{ route('practice-management.cellularDeviceManager') }}">Cellular Device Manager</a>
                             <a class="dropdown-item" href="{{ route('practice-management.claims') }}">Claims</a>