Bladeren bron

Care month table

Samson Mutunga 3 jaren geleden
bovenliggende
commit
3e3a4c55cd
1 gewijzigde bestanden met toevoegingen van 14 en 14 verwijderingen
  1. 14 14
      resources/views/app/dna/care-months.blade.php

+ 14 - 14
resources/views/app/dna/care-months.blade.php

@@ -15,30 +15,30 @@
             <div class="p-3">
                 <!-- Filter -->
             </div>
-            <table class="table table-condensed p-0 m-0">
-                <thead class="bg-light">
+            <table class="table table-sm table-stripped 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"># Meas. this mt.</th>
-                        <th class="px-3 border-0">My Bill</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"># Meas. this mt.</th>
+                        <th class="border-0">My Bill</th>
                     </tr>
                 </thead>
                 <tbody>
                     @foreach($careMonths as $careMonth)
                     <tr>
 
-                        <td class="px-3 text-nowrap">
+                        <td class="text-nowrap">
                             <a native target="_blank" href="{{route('patients.view.dashboard', $careMonth->client)}}">
                                 {{$careMonth->client->chart_number}}
                             </a>
                         </td>
-                        <td class="px-3 text-nowrap">
+                        <td class="text-nowrap">
                             <a native target="_blank" href="{{route('patients.view.dashboard', $careMonth->client)}}">
                                 {{$careMonth->client->displayName()}}
                             </a>
@@ -69,7 +69,7 @@
                             @if($bill)
                             <div class="d-flex flex-column">
                                 <span>Code: {{ $bill->code }}</span>
-                                <a href="/patients/view/{{ $bill->note->client->uid }}/notes/view/{{ $bill->note->uid }}" class="font-weight-bold">Note</a>
+                                <a href="/patients/view/{{ $bill->note->client->uid }}/notes/view/{{ $bill->note->uid }}">Note</a>
                             </div>
                             @endif
                         </td>