|
@@ -130,6 +130,7 @@
|
|
|
<th class="border-0 text-secondary">NA</th>
|
|
|
<th class="border-0 text-secondary">HCP Signed</th>
|
|
|
<th class="border-0 text-secondary">ICDs</th>
|
|
|
+ <th class="border-0 text-secondary">Bills</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -175,6 +176,14 @@
|
|
|
-
|
|
|
@endif
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ @if(!count($note->bills))
|
|
|
+ <div class="alert alert-warning">No bills.</div>
|
|
|
+ @endif
|
|
|
+ @foreach($note->bills as $bill)
|
|
|
+ <div>{{ $bill->code}} | {{ $bill->number_of_units }} | {{ $bill->hcp_expected_payment_amount }}</div>
|
|
|
+ @endforeach
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
</tbody>
|