|
@@ -1333,8 +1333,13 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach ($note->claims as $claim)
|
|
|
- <tr>
|
|
|
- <td class="pl-2">{{ $claim->iid }}</td>
|
|
|
+ <tr class="{{ $claim->is_cancelled ? 'text-secondary bg-light on-hover-opaque' : '' }}"">
|
|
|
+ <td class="pl-2">
|
|
|
+ {{ $claim->iid }}
|
|
|
+ @if($claim->is_cancelled)
|
|
|
+ <div class="text-secondary font-weight-bold text-sm mt-1">[CANCELLED]</div>
|
|
|
+ @endif
|
|
|
+ </td>
|
|
|
<td class="p-0">
|
|
|
@if($claim->lines->count())
|
|
|
<table class="table table-sm table-condensed border-left border-right mb-0">
|