|
@@ -40,8 +40,8 @@ $genericBills = genericBills($pro, @$patient, @$entityType, @$entityUid);
|
|
<th class="border-bottom-0 screen-only">Total</th>
|
|
<th class="border-bottom-0 screen-only">Total</th>
|
|
<th class="border-bottom-0">Sign</th>
|
|
<th class="border-bottom-0">Sign</th>
|
|
<th class="border-bottom-0">Cancellation</th>
|
|
<th class="border-bottom-0">Cancellation</th>
|
|
- @if($pro->pro_type === 'ADMIN')
|
|
|
|
<th class="border-bottom-0">Verification</th>
|
|
<th class="border-bottom-0">Verification</th>
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
<th class="border-bottom-0 screen-only">Payment</th>
|
|
<th class="border-bottom-0 screen-only">Payment</th>
|
|
@endif
|
|
@endif
|
|
</tr>
|
|
</tr>
|
|
@@ -206,6 +206,15 @@ $genericBills = genericBills($pro, @$patient, @$entityType, @$entityUid);
|
|
@endif
|
|
@endif
|
|
|
|
|
|
</td>
|
|
</td>
|
|
|
|
+ <td> <!-- verification -->
|
|
|
|
+ @if(!$bill->is_cancelled)
|
|
|
|
+ @if(!$bill->is_verified)
|
|
|
|
+ <div class="text-warning-mellow font-weight-bold">Not Verified</div>
|
|
|
|
+ @else
|
|
|
|
+ <div class="text-info font-weight-bold"><i class="fa fa-check"></i> Verified</div>
|
|
|
|
+ @endif
|
|
|
|
+ @endif
|
|
|
|
+ </td>
|
|
@if($pro->pro_type === 'ADMIN')
|
|
@if($pro->pro_type === 'ADMIN')
|
|
<td> <!-- verification -->
|
|
<td> <!-- verification -->
|
|
@if(!$bill->is_cancelled)
|
|
@if(!$bill->is_cancelled)
|