Browse Source

added number of units

Josh 4 years ago
parent
commit
946971de70
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/views/app/practice-management/billing-manager.blade.php

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

@@ -54,8 +54,8 @@
                                     @foreach($note->bills as $bill)
                                     <tr>
                                         <td>{{$bill->code}}</td>
-                                        @if($bill->code == 'Treatment Services')
-                                            <td>{{floor($bill->number_of_units*60)}}</td>
+                                        @if(strpos($bill->code,'Treatment Services'))
+                                            <td>{{floor($bill->number_of_units*60)}}m</td>
                                         @else
                                             <td>{{$bill->number_of_units}}</td>
                                         @endif