|
@@ -73,7 +73,8 @@
|
|
|
@if($showProgramsColumn)<th class="border-0">Program(s)</th>@endif
|
|
|
<th class="border-0">MCN</th>
|
|
|
<th class="border-0">PCP</th>
|
|
|
- {{--<th class="border-0">RMM</th>--}}
|
|
|
+ <th class="border-0"><span class="text-nowrap">Recent Notes</span><br>(overall)</th>
|
|
|
+ <th class="border-0"><span class="text-nowrap">Recent Notes</span><br>(me)</th>
|
|
|
<th class="border-0">Appointments</th>
|
|
|
<th class="border-0">Account</th>
|
|
|
<th class="border-0">Tags</th>
|
|
@@ -175,9 +176,38 @@
|
|
|
<td>
|
|
|
{{ $patient->mcp ? $patient->mcp->displayName() : '-' }}
|
|
|
</td>
|
|
|
- {{--<td>
|
|
|
- {{ $patient->rmm ? $patient->rmm->displayName() : '-' }}
|
|
|
- </td>--}}
|
|
|
+ <td class="p-0">
|
|
|
+ <?php $allNotes = $patient->recentNotes(); ?>
|
|
|
+ <table class="table table-sm table-condensed table-bordered m-0 width-200px">
|
|
|
+ <tbody>
|
|
|
+ @foreach($allNotes as $note)
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ <a href="{{route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $note])}}"><b class="text-nowrap">{{friendlier_date($note->effective_dateest)}}</b></a>
|
|
|
+ <br>
|
|
|
+ <span class="text-nowrap">{{$note->hcpPro->displayName()}}</span>
|
|
|
+ </td>
|
|
|
+ <td>{{$note->new_or_fu_or_na}}</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
+ <td class="py-0 pl-2">
|
|
|
+ <?php $myNotes = $patient->recentNotes($pro); ?>
|
|
|
+ <table class="table table-sm table-condensed table-bordered m-0 width-200px">
|
|
|
+ <tbody>
|
|
|
+ @foreach($myNotes as $note)
|
|
|
+ <tr>
|
|
|
+ <td>
|
|
|
+ <a href="{{route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $note])}}"><b class="text-nowrap">{{friendlier_date($note->effective_dateest)}}</b></a>
|
|
|
+ </td>
|
|
|
+ <td>{{$note->new_or_fu_or_na}}</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </td>
|
|
|
<td>
|
|
|
<table class="table table-sm border-0 my-0">
|
|
|
<tbody>
|
|
@@ -189,7 +219,7 @@
|
|
|
<div class="pb-0">
|
|
|
{{ friendly_date_time($appointment->start_time, false) }}, {{ friendly_time($appointment->raw_start_time) }}
|
|
|
<span class="d-inline-block text-secondary text-sm">({{ $appointment->timezone }})</span>
|
|
|
- /
|
|
|
+ <br>
|
|
|
<b class="mr-1">{{$appointment->pro->displayName()}}</b>
|
|
|
<span class="text-secondary text-sm">({{ $appointment->status }})</span>
|
|
|
</div>
|