|
@@ -185,6 +185,14 @@
|
|
|
margin:0 2em 2em;
|
|
|
}
|
|
|
|
|
|
+ td.cr-check {
|
|
|
+ background-color: lightgreen;
|
|
|
+ }
|
|
|
+
|
|
|
+ td.cr-close {
|
|
|
+ background-color: lightcoral;
|
|
|
+ }
|
|
|
+
|
|
|
</style>
|
|
|
<div style="overflow: auto">
|
|
|
<table class="table table-bordered table-condensed" id="notes-table">
|
|
@@ -297,11 +305,19 @@
|
|
|
{{-- <td>--}}
|
|
|
{{-- {{ $loopLastDateSeenByMcpTypePro }}--}}
|
|
|
{{-- </td>--}}
|
|
|
- <td>
|
|
|
- {{ $note->is_signed_by_hcp ? 'Signed' : 'No' }}
|
|
|
+
|
|
|
+ <td class="cr-{{ $note->is_signed_by_hcp ? 'check' : 'close' }}">
|
|
|
+ <i class="fa fa-{{ $note->is_signed_by_hcp ? 'check' : 'times-circle' }}"></i>
|
|
|
+ HCP {{ $note->is_signed_by_hcp ? '' : 'Not' }} Signed
|
|
|
+ </td>
|
|
|
+ <td class="cr-{{ $note->is_bill_closed ? 'check' : 'close' }}">
|
|
|
+ <i class="fa fa-{{ $note->is_bill_closed ? 'check' : 'times-circle' }}"></i>
|
|
|
+ Billing {{ $note->is_bill_closed ? '' : 'Not' }} Closed
|
|
|
+ </td>
|
|
|
+ <td class="cr-{{ $note->is_claim_closed ? 'check' : 'close' }}">
|
|
|
+ <i class="fa fa-{{ $note->is_claim_closed ? 'check' : 'times-circle' }}"></i>
|
|
|
+ Claiming {{ $note->is_claim_closed ? '' : 'Not' }} Closed
|
|
|
</td>
|
|
|
- <td>{!! $note->is_bill_closed ? '<i class="fa fa-check"></i> Billing Closed' : 'Billing Not Closed' !!}</td>
|
|
|
- <td>{!! $note->is_claim_closed ? '<i class="fa fa-check"></i> Claiming Closed' : 'Claiming Not Closed' !!}</td>
|
|
|
{{-- <td><div style="max-height: 200px; overflow-y: auto;">{!! $content !!}</div></td>--}}
|
|
|
|
|
|
<td class="p-0">
|