Selaa lähdekoodia

added number of units

Josh 4 vuotta sitten
vanhempi
commit
b6aa5319be

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

@@ -46,6 +46,7 @@
                                 <thead>
                                     <tr>
                                         <th>Service</th>
+                                        <th>Number of units</th>
                                         <th>Signed?</th>
                                     </tr>
                                 </thead>
@@ -53,6 +54,7 @@
                                     @foreach($note->bills as $bill)
                                     <tr>
                                         <td>{{$bill->code}}</td>
+                                        <td>{{$bill->number_of_units}}</td>
                                         <td>{{$bill->is_signed_by_hcp?'Yes':'No'}}</td>
                                     </tr>
                                     @endforeach