logicpowerhouse 4 жил өмнө
parent
commit
d98dcc97a5

+ 6 - 2
resources/views/app/practice-management/billing-manager.blade.php

@@ -10,7 +10,7 @@
                 <i class="fas fa-user-injured"></i>
                 Notes
             </strong>
-            
+
         </div>
         <div class="card-body p-0">
             <table class="table table-sm table-condensed p-0 m-0">
@@ -29,7 +29,7 @@
                 <tbody>
                 @foreach ($notes as $note)
                     <tr class="{{ $note->is_cancelled ? 'cancelled-item always-clickable' : '' }}">
-                        
+
                         <td class="">
                             <a href="/patients/view/{{ $note->client->uid }}/notes/view/{{ $note->uid }}">{{ $note->client->displayName() }}</a>
                         </td>
@@ -48,6 +48,8 @@
                                         <th>Service</th>
                                         <th># of units</th>
                                         <th>Signed?</th>
+                                        <th>Cancelled?</th>
+                                        <th>HCP ex. amount</th>
                                     </tr>
                                 </thead>
                                 <tbody>
@@ -60,6 +62,8 @@
                                             <td>{{$bill->number_of_units}}</td>
                                         @endif
                                         <td>{{$bill->is_signed_by_hcp?'Yes':'No'}}</td>
+                                        <td>{{ $bill->is_cancelled ?'Yes':'No'}}</td>
+                                        <td>{{ $bill->hcp_expected_payment_amount }}</td>
                                     </tr>
                                     @endforeach
                                 </tbody>

+ 1 - 1
routes/web.php

@@ -15,7 +15,7 @@ use Illuminate\Support\Facades\Route;
 
 
 /*
- * if no pro performer, then redirect to /login
+ * if no pro performer, then redirect to /login2
  * [Cell Number] [Password] field -> proLogInWithPassword -> /pro/dashboard
  * -> they are authenticated in... see the home dashboard... logout button to -> /login
  */