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.

cell.blade.php 475B

1234567891011121314151617181920212223
  1. @props([
  2. 'alignmentClass',
  3. 'indent' => false,
  4. 'bold' => false,
  5. ])
  6. <td
  7. @class([
  8. $alignmentClass,
  9. 'last-of-type:pe-1 sm:last-of-type:pe-3',
  10. 'ps-3 sm:ps-6' => $indent,
  11. 'p-0 first-of-type:ps-1 sm:first-of-type:ps-3' => ! $indent,
  12. ])
  13. >
  14. <div
  15. @class([
  16. 'px-3 py-4 text-sm leading-6 text-gray-950 dark:text-white',
  17. 'font-semibold' => $bold,
  18. ])
  19. >
  20. {{ $slot }}
  21. </div>
  22. </td>