|
@@ -0,0 +1,53 @@
|
|
|
+@extends ('layouts/template')
|
|
|
+
|
|
|
+@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-calendar-alt"></i>
|
|
|
+ My Clinical Teams
|
|
|
+ </strong>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="card-body p-0">
|
|
|
+ <div class="p-3">
|
|
|
+ <!-- Filters -->
|
|
|
+ </div>
|
|
|
+ <table class="table table-condensed p-0 m-0">
|
|
|
+ <thead class="bg-light">
|
|
|
+ <tr>
|
|
|
+ <th class="px-3 border-0">Name</th>
|
|
|
+ <th class="px-3 border-0">Specialty</th>
|
|
|
+ <th class="px-3 border-0"># My Patients Assigned</th>
|
|
|
+ <th class="px-3 border-0">Upcoming Appts.</th>
|
|
|
+ <th class="px-3 border-0">Public Appointment Page</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @foreach($teams as $team)
|
|
|
+ <tr>
|
|
|
+ <td>{{ $team->internal_name }}</td>
|
|
|
+ <td></td>
|
|
|
+ <td></td>
|
|
|
+ <td></td>
|
|
|
+ <td>{{ $team->slug }}</td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+
|
|
|
+ @if(count($teams) === 0)
|
|
|
+ <tr>
|
|
|
+ <td colspan="5">No records found!</td>
|
|
|
+ </tr>
|
|
|
+ @endif
|
|
|
+ </tbody>
|
|
|
+
|
|
|
+ </table>
|
|
|
+ <div class="ml-2 mt-2">
|
|
|
+ {{ $teams->appends(request()->input())->links() }}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+@endsection
|