選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

header.blade.php 495B

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 text-gray-950 dark:text-white">
  10. {{ $headerCell }}
  11. </span>
  12. </th>
  13. @endforeach
  14. </tr>
  15. </thead>