mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
19 lines
483 B
PHP
19 lines
483 B
PHP
{{-- Consistent table header cell --}}
|
|
@props([
|
|
'align' => 'left',
|
|
'width' => null,
|
|
])
|
|
|
|
@php
|
|
$alignClass = match($align) {
|
|
'center' => 'text-center',
|
|
'right' => 'text-right',
|
|
default => 'text-left',
|
|
};
|
|
$widthClass = $width ? "w-{$width}" : '';
|
|
@endphp
|
|
|
|
<th {{ $attributes->merge(['class' => "px-4 py-3 {$alignClass} text-xs font-semibold text-gray-600 dark:text-gray-300 uppercase tracking-wider {$widthClass}"]) }}>
|
|
{{ $slot }}
|
|
</th>
|