|
@@ -1,19 +1,48 @@
|
|
|
-@extends ('layouts/template')
|
|
|
+<div class="p-3 mcp-theme-1">
|
|
|
+ <div class="card">
|
|
|
|
|
|
-@section('content')
|
|
|
- <div class="p-3 mcp-theme-1" id="patients-list">
|
|
|
- <div class="card">
|
|
|
-
|
|
|
- <div class="card-header px-3 py-2 d-flex align-items-center">
|
|
|
- <strong class="mr-4">
|
|
|
- <i class="fas fa-user-injured"></i>
|
|
|
- Notes Pending Signature
|
|
|
- </strong>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="card-body p-0">
|
|
|
+ <div class="card-header px-3 py-2 d-flex align-items-center border-bottom-0">
|
|
|
+ <strong class="mr-4">
|
|
|
+ <i class="fas fa-user-injured"></i>
|
|
|
+ Notes Pending Signature
|
|
|
+ </strong>
|
|
|
+ </div>
|
|
|
|
|
|
- </div>
|
|
|
+ <div class="card-body p-0 border-top-0 pb-0">
|
|
|
+ <table class="table table-sm table-striped mb-0">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="border-bottom-0">Date</th>
|
|
|
+ <th class="border-bottom-0">Patient</th>
|
|
|
+ <th class="border-bottom-0">ICD</th>
|
|
|
+ <th class="border-bottom-0">Status</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @foreach($records as $row)
|
|
|
+ <tr>
|
|
|
+ <td class="border-bottom-0">
|
|
|
+ <a href="/patients/view/{{ $row->client->uid }}/notes/view/{{ $row->uid }}" class="font-weight-bold">
|
|
|
+ {{ friendlier_date($row->effective_dateest) }}
|
|
|
+ </a>
|
|
|
+ </td>
|
|
|
+ <td class="border-bottom-0">{{$row->client->displayName()}}</td>
|
|
|
+ <td class="border-bottom-0">
|
|
|
+ @foreach($row->reasons as $reason)
|
|
|
+ <span class="pr-2">{{$reason->code}}</span>
|
|
|
+ @endforeach
|
|
|
+ @if(!!$row->reasons)
|
|
|
+ -
|
|
|
+ @endif
|
|
|
+ </td>
|
|
|
+ <td class="border-bottom-0">
|
|
|
+ {{$row->overallStatus()}}
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
</div>
|
|
|
-@endsection
|
|
|
+</div>
|
|
|
+
|