|
@@ -15,14 +15,14 @@
|
|
<div class="p-3">
|
|
<div class="p-3">
|
|
<!-- Filters -->
|
|
<!-- Filters -->
|
|
</div>
|
|
</div>
|
|
- <table class="table table-condensed p-0 m-0">
|
|
|
|
- <thead class="bg-light">
|
|
|
|
|
|
+ <table class="table table-sm table-striped p-0 m-0">
|
|
|
|
+ <thead class="bg-light border-top">
|
|
<tr>
|
|
<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>
|
|
|
|
|
|
+ <th class="border-0">Name</th>
|
|
|
|
+ <th class="border-0">Specialty</th>
|
|
|
|
+ <th class="border-0"># My Patients Assigned</th>
|
|
|
|
+ <th class="border-0">Upcoming Appts.</th>
|
|
|
|
+ <th class="border-0">Public Appointment Page</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@@ -32,7 +32,9 @@
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
- <td>{{ $team->slug }}</td>
|
|
|
|
|
|
+ <td>
|
|
|
|
+ <a native target="_blank" href="{{config('app.stagfe6_url') . '/' . $team->slug}}">{{ $team->slug }}</a>
|
|
|
|
+ </td>
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|
|
|
|
|
|
@@ -44,9 +46,11 @@
|
|
</tbody>
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
</table>
|
|
- <div class="ml-2 mt-2">
|
|
|
|
- {{ $teams->appends(request()->input())->links() }}
|
|
|
|
- </div>
|
|
|
|
|
|
+ @if($teams->hasPages())
|
|
|
|
+ <div class="ml-2 mt-2">
|
|
|
|
+ {{ $teams->appends(request()->input())->links() }}
|
|
|
|
+ </div>
|
|
|
|
+ @endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|