|
@@ -60,8 +60,9 @@
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th class="px-2 text-secondary">Created</th>
|
|
|
+ <th class="px-2 text-secondary">Pro</th>
|
|
|
<th class="px-2 text-secondary">Title</th>
|
|
|
-<!-- <th class="px-2 text-secondary">Report</th>-->
|
|
|
+ <th class="px-2 text-secondary">Report Date</th>
|
|
|
<th class="px-2 text-secondary">Sign</th>
|
|
|
<th class="px-2 text-secondary">Category</th>
|
|
|
</tr>
|
|
@@ -70,24 +71,16 @@
|
|
|
@foreach($patient->incomingReports as $document)
|
|
|
<tr class="{{$document->is_entry_error ? 'entry-error' : ''}} {{@$currentReport->uid === $document->uid ? 'bg-aliceblue' : ''}}">
|
|
|
<td class="px-2">{{ friendly_date_time($document->created_at, false) }}</td>
|
|
|
+ <td class="px-2">
|
|
|
+ {{$document->hcp ? $document->hcp->displayName() : '-'}}
|
|
|
+ </td>
|
|
|
<td class="px-2">
|
|
|
<a href="{{route('patients.view.incoming-reports', ['patient' => $patient, 'currentReport' => $document])}}"
|
|
|
class="{{@$currentReport->uid === $document->uid ? 'font-weight-bold' : ''}}">
|
|
|
{{ $document->title ? $document->title : '(not set)' }}
|
|
|
</a>
|
|
|
</td>
|
|
|
-{{-- <td class="px-2">--}}
|
|
|
-{{-- <div class="d-flex align-items-center">--}}
|
|
|
-{{-- <a class="pdf-viewer-trigger" native target="_blank"--}}
|
|
|
-{{-- href="/api/incomingReport/download/{{ $document->uid }}"--}}
|
|
|
-{{-- title="View">View</a>--}}
|
|
|
-{{-- @if($document->is_entry_error)--}}
|
|
|
-{{-- <span class="ml-auto text-danger on-hover-opaque" title="Entry Error">--}}
|
|
|
-{{-- <i class="fa fa-exclamation-triangle"></i>--}}
|
|
|
-{{-- </span>--}}
|
|
|
-{{-- @endif--}}
|
|
|
-{{-- </div>--}}
|
|
|
-{{-- </td>--}}
|
|
|
+ <td class="px-2">{{ friendly_date_time($document->report_date, false) }}</td>
|
|
|
<td class="px-2">
|
|
|
@if(!$document->has_hcp_pro_signed)
|
|
|
-
|