@@ -324,12 +324,14 @@
<div>
<table class="table table-sm m-0 border-0">
@foreach($note->bills as $bill)
+ @if(!$bill->is_cancelled)
<tr>
<td>{{$bill->code}}</td>
<td style="width: 60px">
{{str_contains($bill->code, 'Treatment Services') ? floor((float) $bill->number_of_units * 60) . ' mins.' : $bill->number_of_units}}
</td>
</tr>
+ @endif
@endforeach
</table>
</div>