|
@@ -471,7 +471,7 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach ($note->bills as $bill)
|
|
|
- <tr>
|
|
|
+ <tr class="{{$bill->is_cancelled ? 'bg-light text-secondary' : ''}}">
|
|
|
<?php /* <td class="p-0">
|
|
|
<table class="table-striped table-sm table-condensed border border-left-0 border-top-0 border-bottom-0">
|
|
|
<tbody>
|
|
@@ -539,10 +539,10 @@
|
|
|
<td class="pr-3">
|
|
|
@if($bill->has_hcp_been_paid)
|
|
|
<span class="text-secondary">Paid. </span>
|
|
|
- <span class="font-weight-bold text-success">${{ friendly_money($bill->total_paid) }}</span>
|
|
|
+ <span class="font-weight-bold">${{ friendly_money($bill->total_paid) }}</span>
|
|
|
@else
|
|
|
<span class="text-secondary">Exp. </span>
|
|
|
- <span class="font-weight-bold text-dark">{{ $bill->total_expected ? '$' . friendly_money($bill->total_expected) : '-' }}</span>
|
|
|
+ <span class="font-weight-bold">{{ $bill->total_expected ? '$' . friendly_money($bill->total_expected) : '-' }}</span>
|
|
|
@endif
|
|
|
</td>
|
|
|
<td>
|