|
@@ -430,6 +430,36 @@
|
|
|
|
|
|
<div class="row mt-3">
|
|
<div class="row mt-3">
|
|
<div class="col-6">
|
|
<div class="col-6">
|
|
|
|
+
|
|
|
|
+ <div class="mb-3">
|
|
|
|
+ <p class="mb-2 font-weight-bold text-secondary">Follow ups scheduled for today</p>
|
|
|
|
+ <?php $fus = $pro->followupsScheduledForToday(); ?>
|
|
|
|
+ @if(count($fus))
|
|
|
|
+ <table class="table table-sm table-striped">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th>Client</th>
|
|
|
|
+ <th>Reason</th>
|
|
|
|
+ <th>Memo</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ @foreach($fus as $fu)
|
|
|
|
+ <tr>
|
|
|
|
+ <td><a href="/patients/view/{{$fu->client_uid}}">{{$fu->client_name}}</a></td>
|
|
|
|
+ <td>{{$fu->next_follow_up_reason}}</td>
|
|
|
|
+ <td>{{$fu->next_follow_up_memo}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+ @else
|
|
|
|
+ <span class="text-secondary">No follow ups scheduled for today!</span>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-6">
|
|
|
|
+
|
|
@if(request()->input('mcpas'))
|
|
@if(request()->input('mcpas'))
|
|
@if(count($newMCPAssociations))
|
|
@if(count($newMCPAssociations))
|
|
<div class="mb-3 border rounded px-3 py-2 ack-container">
|
|
<div class="mb-3 border rounded px-3 py-2 ack-container">
|
|
@@ -535,8 +565,8 @@
|
|
<a href="/?naas=1" class="d-block">You have <b>{{$newNAAssociations}}</b> new NA association{{$newNAAssociations === 1 ? '' : 's'}}</a>
|
|
<a href="/?naas=1" class="d-block">You have <b>{{$newNAAssociations}}</b> new NA association{{$newNAAssociations === 1 ? '' : 's'}}</a>
|
|
@endif
|
|
@endif
|
|
@endif
|
|
@endif
|
|
- </div>
|
|
|
|
- <div class="col-6">
|
|
|
|
|
|
+
|
|
|
|
+
|
|
@if(request()->input('mcpcm'))
|
|
@if(request()->input('mcpcm'))
|
|
@if(count($mcpClientMemos))
|
|
@if(count($mcpClientMemos))
|
|
<div class="mb-3 border rounded px-3 py-2 ack-container table-responsive">
|
|
<div class="mb-3 border rounded px-3 py-2 ack-container table-responsive">
|