|
@@ -184,16 +184,14 @@
|
|
|
<table class="table table-sm tabe-striped mb-0">
|
|
|
<thead class="bg-light">
|
|
|
<tr>
|
|
|
- <th class="border-bottom-0">Bill service type</th>
|
|
|
- <th class="border-bottom-0">Code</th>
|
|
|
+ <th class="border-bottom-0 w-25">Code</th>
|
|
|
<th class="border-bottom-0"></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach ($note->bills as $bill)
|
|
|
<tr>
|
|
|
- <td>{{$bill->bill_service_type}}</td>
|
|
|
- <td>{{$bill->code}}</td>
|
|
|
+ <td class="{{ $bill->is_cancelled ? 'text-secondary' : '' }}">{{$bill->code}}</td>
|
|
|
<td>
|
|
|
<div class="d-flex align-items-center">
|
|
|
@if(!$bill->is_cancelled)
|