Browse Source

Appointments

Samson Mutunga 3 years ago
parent
commit
176dfb5ec1
1 changed files with 13 additions and 13 deletions
  1. 13 13
      resources/views/app/dna/appointments.blade.php

+ 13 - 13
resources/views/app/dna/appointments.blade.php

@@ -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>