|
@@ -15,37 +15,37 @@
|
|
|
<div class="p-3">
|
|
|
@include('app.mcp.appointments_filters')
|
|
|
</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>
|
|
|
- <th class="px-3 border-0">Date & Time</th>
|
|
|
- <th class="px-3 border-0">Patient</th>
|
|
|
- <th class="px-3 border-0">Title</th>
|
|
|
- <th class="px-3 border-0">Description</th>
|
|
|
- <th class="px-3 border-0">Status</th>
|
|
|
- <th class="px-3 border-0">Confirmation</th>
|
|
|
+ <th class="border-0">Date & Time</th>
|
|
|
+ <th class="border-0">Patient</th>
|
|
|
+ <th class="border-0">Title</th>
|
|
|
+ <th class="border-0">Description</th>
|
|
|
+ <th class="border-0">Status</th>
|
|
|
+ <th class="border-0">Confirmation</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($appointments as $appointment)
|
|
|
<tr>
|
|
|
- <td class="px-2">
|
|
|
+ <td>
|
|
|
<a href="/patients/view/{{$appointment->client->uid}}/calendar/{{$appointment->uid}}" class="font-weight-bold text-nowrap">
|
|
|
{{friendlier_date_time($appointment->raw_date . ' ' . $appointment->raw_start_time)}}
|
|
|
</a>
|
|
|
</td>
|
|
|
- <td class="px-2">{{ $appointment->client->displayName() }}</pre>
|
|
|
+ <td>{{ $appointment->client->displayName() }}</pre>
|
|
|
</td>
|
|
|
- <td class="px-2">{{ $appointment->title }}</td>
|
|
|
- <td class="px-2">{{ $appointment->description }}</td>
|
|
|
- <td class="px-2">
|
|
|
+ <td>{{ $appointment->title }}</td>
|
|
|
+ <td>{{ $appointment->description }}</td>
|
|
|
+ <td>
|
|
|
{{ $appointment->status }}
|
|
|
@if($appointment->status_memo)
|
|
|
<hr>
|
|
|
{{$appointment->status_memo}}
|
|
|
@endif
|
|
|
</td>
|
|
|
- <td class="px-2">
|
|
|
+ <td>
|
|
|
@include('app.patient.partials.appointment-confirmation',['patient' => $appointment->client])
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -57,11 +57,12 @@
|
|
|
</tr>
|
|
|
@endif
|
|
|
</tbody>
|
|
|
-
|
|
|
</table>
|
|
|
+ @if($appointments->hasPages())
|
|
|
<div class="ml-2 mt-2">
|
|
|
{{ $appointments->appends(request()->input())->links() }}
|
|
|
</div>
|
|
|
+ @endif
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|