|
@@ -25,8 +25,8 @@
|
|
|
<th class="border-0">Sex</th>
|
|
|
<th class="border-0">MCN</th>
|
|
|
<th class="border-0">PCP</th>
|
|
|
- <th class="border-0">Assistant</th>
|
|
|
- <th class="border-0">Next E&M</th>
|
|
|
+ <th class="border-0">RMM</th>
|
|
|
+ <th class="border-0">Upcoming Appointments</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -66,10 +66,34 @@
|
|
|
{{ $patient->mcp ? $patient->mcp->displayName() : '-' }}
|
|
|
</td>
|
|
|
<td>
|
|
|
- {{ $patient->cm ? $patient->cm->displayName() : '-' }}
|
|
|
+ {{ $patient->rmm ? $patient->rmm->displayName() : '-' }}
|
|
|
</td>
|
|
|
<td>
|
|
|
- {{$patient->next_appointment ? friendly_date_time($patient->next_appointment, false) : '-'}}
|
|
|
+ <table class="table table-sm border-0 my-0">
|
|
|
+ <tbody>
|
|
|
+ @foreach($patient->appointments as $appointment)
|
|
|
+ <tr>
|
|
|
+ <td class="text-black p-0 border-0">
|
|
|
+ <div class="pb-0">
|
|
|
+ {{ friendly_date_time($appointment->start_time, false) }}, {{ friendly_time($appointment->start_time) }}
|
|
|
+ /
|
|
|
+ {{--<span class="d-inline-block ml- 2 text-secondary">{{ $appointment->title }}</span>
|
|
|
+ / --}}
|
|
|
+ <b class="mr-1">{{$appointment->pro->displayName()}}</b>
|
|
|
+ <span class="text-secondary text-sm">({{ $appointment->status }})</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ @if(!$patient->appointments || count($patient->appointments) === 0)
|
|
|
+ <tr>
|
|
|
+ <td class="text-secondary p-0 border-0">
|
|
|
+ No appointments
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</td>
|
|
|
</tr>
|
|
|
@endforeach
|