|
@@ -10,7 +10,7 @@
|
|
<i class="fas fa-user-injured"></i>
|
|
<i class="fas fa-user-injured"></i>
|
|
Notes
|
|
Notes
|
|
</strong>
|
|
</strong>
|
|
-
|
|
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<div class="card-body p-0">
|
|
<table class="table table-sm table-condensed p-0 m-0">
|
|
<table class="table table-sm table-condensed p-0 m-0">
|
|
@@ -29,7 +29,7 @@
|
|
<tbody>
|
|
<tbody>
|
|
@foreach ($notes as $note)
|
|
@foreach ($notes as $note)
|
|
<tr class="{{ $note->is_cancelled ? 'cancelled-item always-clickable' : '' }}">
|
|
<tr class="{{ $note->is_cancelled ? 'cancelled-item always-clickable' : '' }}">
|
|
-
|
|
|
|
|
|
+
|
|
<td class="">
|
|
<td class="">
|
|
<a href="/patients/view/{{ $note->client->uid }}/notes/view/{{ $note->uid }}">{{ $note->client->displayName() }}</a>
|
|
<a href="/patients/view/{{ $note->client->uid }}/notes/view/{{ $note->uid }}">{{ $note->client->displayName() }}</a>
|
|
</td>
|
|
</td>
|
|
@@ -48,6 +48,8 @@
|
|
<th>Service</th>
|
|
<th>Service</th>
|
|
<th># of units</th>
|
|
<th># of units</th>
|
|
<th>Signed?</th>
|
|
<th>Signed?</th>
|
|
|
|
+ <th>Cancelled?</th>
|
|
|
|
+ <th>HCP ex. amount</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@@ -60,6 +62,8 @@
|
|
<td>{{$bill->number_of_units}}</td>
|
|
<td>{{$bill->number_of_units}}</td>
|
|
@endif
|
|
@endif
|
|
<td>{{$bill->is_signed_by_hcp?'Yes':'No'}}</td>
|
|
<td>{{$bill->is_signed_by_hcp?'Yes':'No'}}</td>
|
|
|
|
+ <td>{{ $bill->is_cancelled ?'Yes':'No'}}</td>
|
|
|
|
+ <td>{{ $bill->hcp_expected_payment_amount }}</td>
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|
|
</tbody>
|
|
</tbody>
|