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.

header.blade.php 505B

12345678910111213141516
  1. @props([
  2. 'headers',
  3. 'alignmentClass',
  4. ])
  5. <thead class="divide-y divide-gray-200 dark:divide-white/5">
  6. <tr class="bg-gray-50 dark:bg-white/5">
  7. @foreach($headers as $headerIndex => $headerCell)
  8. <th class="px-3 py-3.5 sm:first-of-type:ps-6 sm:last-of-type:pe-6 {{ $alignmentClass($headerIndex) }}">
  9. <span class="text-sm font-semibold leading-6 text-gray-950 dark:text-white">
  10. {{ $headerCell }}
  11. </span>
  12. </th>
  13. @endforeach
  14. </tr>
  15. </thead>