You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

footer.blade.php 502B

123456789101112131415
  1. @props(['totals', 'alignmentClass'])
  2. @if(!empty($totals))
  3. <tfoot>
  4. <tr class="bg-gray-50 dark:bg-white/5">
  5. @foreach($totals as $totalIndex => $totalCell)
  6. <x-filament-tables::cell class="{{ $alignmentClass($totalIndex) }}">
  7. <div class="px-3 py-3 text-sm leading-6 font-semibold text-gray-950 dark:text-white">
  8. {{ $totalCell }}
  9. </div>
  10. </x-filament-tables::cell>
  11. @endforeach
  12. </tr>
  13. </tfoot>
  14. @endif