meobda-website/resources/views/components/table/td.blade.php

8 lines
286 B
PHP

@props(['emphasis'=>false])
<td {{ $attributes->class([
'py-4 pr-3 pl-4 text-sm font-medium whitespace-nowrap text-gray-900 sm:pl-6 dark:text-white' => $emphasis,
'px-3 py-4 text-sm whitespace-nowrap text-gray-500 dark:text-gray-400' => ! $emphasis
]) }}>
{{ $slot }}
</td>