|
@@ -543,32 +543,32 @@
|
|
@if($patient->memos && count($patient->memos))
|
|
@if($patient->memos && count($patient->memos))
|
|
<thead class="bg-light">
|
|
<thead class="bg-light">
|
|
<tr class="text-nowrap">
|
|
<tr class="text-nowrap">
|
|
- <th class="px-2 text-secondary">Category</th>
|
|
|
|
- <th class="px-2 text-secondary w-50">Summary</th>
|
|
|
|
- <th class="px-2 text-secondary">Created</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">Category</th>
|
|
|
|
+ <th class="border-0 text-secondary w-50">Summary</th>
|
|
|
|
+ <th class="border-0 text-secondary">Created</th>
|
|
@if($performer->pro->pro_type === 'ADMIN')
|
|
@if($performer->pro->pro_type === 'ADMIN')
|
|
- <th class="px-2 text-secondary">Admins Only</th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">Admins Only</th>
|
|
@endif
|
|
@endif
|
|
- <th class="px-2 text-secondary">Ack. by MCP</th>
|
|
|
|
- <th class="px-2 text-secondary delete-column"> </th>
|
|
|
|
|
|
+ <th class="border-0 text-secondary">Ack. by MCP</th>
|
|
|
|
+ <th class="border-0 text-secondary delete-column"> </th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($patient->memos as $memo)
|
|
@foreach($patient->memos as $memo)
|
|
@if(!$memo->is_admin_only || ($memo->is_admin_only && $performer->pro->pro_type === 'ADMIN') )
|
|
@if(!$memo->is_admin_only || ($memo->is_admin_only && $performer->pro->pro_type === 'ADMIN') )
|
|
<tr>
|
|
<tr>
|
|
- <td class="px-2 text-nowrap">{{ $memo->category }}</td>
|
|
|
|
|
|
+ <td class="text-nowrap">{{ $memo->category }}</td>
|
|
<td class="px-2">
|
|
<td class="px-2">
|
|
<pre class="m-0 break-spaces">{{ $memo->content }}</pre>
|
|
<pre class="m-0 break-spaces">{{ $memo->content }}</pre>
|
|
</td>
|
|
</td>
|
|
- <td class="px-2 text-nowrap">
|
|
|
|
|
|
+ <td class="text-nowrap">
|
|
@if($performer->pro->pro_type == 'ADMIN')
|
|
@if($performer->pro->pro_type == 'ADMIN')
|
|
<strong>{{$memo->createdBy->proname_first}} {{$memo->createdBy->pro->name_last}}</strong><br/>
|
|
<strong>{{$memo->createdBy->proname_first}} {{$memo->createdBy->pro->name_last}}</strong><br/>
|
|
@endif
|
|
@endif
|
|
{{ friendly_date_time($memo->created_at) }}
|
|
{{ friendly_date_time($memo->created_at) }}
|
|
</td>
|
|
</td>
|
|
@if($performer->pro->pro_type === 'ADMIN' )
|
|
@if($performer->pro->pro_type === 'ADMIN' )
|
|
- <td class="px-2 text-secondary">
|
|
|
|
|
|
+ <td class="text-secondary">
|
|
@if($memo->is_admin_only)
|
|
@if($memo->is_admin_only)
|
|
<span class="text-success"><i class="fas fa-lock"></i> YES</span>
|
|
<span class="text-success"><i class="fas fa-lock"></i> YES</span>
|
|
@else
|
|
@else
|
|
@@ -576,14 +576,14 @@
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
@endif
|
|
@endif
|
|
- <td class="px-2">
|
|
|
|
|
|
+ <td>
|
|
@if($memo->mcp_stamp_id)
|
|
@if($memo->mcp_stamp_id)
|
|
<span class="text-success">YES <i class="fas fa-info-circle c-pointer" data-toggle="tooltip" data-placement="bottom" title="{{ friendly_date_time($memo->stamp->created_at) }}"></i></span>
|
|
<span class="text-success">YES <i class="fas fa-info-circle c-pointer" data-toggle="tooltip" data-placement="bottom" title="{{ friendly_date_time($memo->stamp->created_at) }}"></i></span>
|
|
@else
|
|
@else
|
|
<span class="text-secondary">NO</span>
|
|
<span class="text-secondary">NO</span>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
- <td class="px-2 text-center delete-column">
|
|
|
|
|
|
+ <td class="text-center delete-column">
|
|
@if($performer->pro->pro_type == 'ADMIN')
|
|
@if($performer->pro->pro_type == 'ADMIN')
|
|
<div moe relative bottom class="mr-2">
|
|
<div moe relative bottom class="mr-2">
|
|
<a start show><i class="fa fa-history"></i></a>
|
|
<a start show><i class="fa fa-history"></i></a>
|