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.

category-header.blade.php 526B

1234567891011121314151617181920
  1. @props([
  2. 'categoryHeaders',
  3. 'alignmentClass' => null,
  4. ])
  5. <tr class="bg-gray-50 dark:bg-white/5">
  6. @foreach($categoryHeaders as $index => $header)
  7. <th
  8. @class([
  9. 'px-3 py-3.5 sm:first-of-type:ps-6 sm:last-of-type:pe-6',
  10. $alignmentClass($index) => $alignmentClass,
  11. ])
  12. >
  13. <span class="text-sm font-semibold leading-6 text-gray-950 dark:text-white">
  14. {{ $header }}
  15. </span>
  16. </th>
  17. @endforeach
  18. </tr>