|
@@ -15,30 +15,30 @@
|
|
|
<div class="p-3">
|
|
|
@include('app.dna.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">Chart #</th>
|
|
|
- <th class="px-3 border-0">Name</th>
|
|
|
- <th class="px-3 border-0">DOB</th>
|
|
|
- <th class="px-3 border-0">Age</th>
|
|
|
- <th class="px-3 border-0">Sex</th>
|
|
|
- <th class="px-3 border-0">Insurance</th>
|
|
|
- <th class="px-3 border-0">MCP</th>
|
|
|
- <th class="px-3 border-0">Time</th>
|
|
|
- <th class="px-3 border-0">Status</th>
|
|
|
+ <th class="border-0">Chart #</th>
|
|
|
+ <th class="border-0">Name</th>
|
|
|
+ <th class="border-0">DOB</th>
|
|
|
+ <th class="border-0">Age</th>
|
|
|
+ <th class="border-0">Sex</th>
|
|
|
+ <th class="border-0">Insurance</th>
|
|
|
+ <th class="border-0">MCP</th>
|
|
|
+ <th class="border-0">Time</th>
|
|
|
+ <th class="border-0">Status</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach($appointments as $appointment)
|
|
|
<tr>
|
|
|
|
|
|
- <td class="px-3 text-nowrap">
|
|
|
+ <td class="text-nowrap">
|
|
|
<a native target="_blank" href="{{route('patients.view.dashboard', $appointment->client)}}">
|
|
|
{{$appointment->client->chart_number}}
|
|
|
</a>
|
|
|
</td>
|
|
|
- <td class="px-3 text-nowrap">
|
|
|
+ <td class="text-nowrap">
|
|
|
<a native target="_blank" href="{{route('patients.view.dashboard', $appointment->client)}}">
|
|
|
{{$appointment->client->displayName()}}
|
|
|
</a>
|