瀏覽代碼

added number of units

Josh 4 年之前
父節點
當前提交
b6aa5319be
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      resources/views/app/practice-management/billing-manager.blade.php

+ 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