@@ -257,7 +257,9 @@
@foreach($note->bills as $bill)
<tr>
<td>{{$bill->code}}</td>
- <td>{{$bill->units}}</td>
+ <td>
+ {{str_contains($bill->code, 'Treatment Services') ? $bill->number_of_units * 60 : $bill->number_of_units}}
+ </td>
</tr>
{{ $bill->code }}
</table>