Ver código fonte

server changes

root 3 anos atrás
pai
commit
ca572724d6
1 arquivos alterados com 9 adições e 0 exclusões
  1. 9 0
      resources/views/app/admin/patients-table.blade.php

+ 9 - 0
resources/views/app/admin/patients-table.blade.php

@@ -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>