Files
newznab-tmux/resources/views/components/admin/th.blade.php
T
2026-07-13 11:36:42 +02:00

19 lines
484 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-2.5 {$alignClass} text-xs font-semibold text-gray-500 dark:text-gray-400 uppercase tracking-wide {$widthClass}"]) }}>
{{ $slot }}
</th>