Files
einundzwanzig-portal/resources/views/vendor/livewire-tables/components/table/td.blade.php
2023-01-14 20:35:54 +01:00

44 lines
1.7 KiB
PHP

@aware(['component', 'row', 'rowIndex'])
@props(['column', 'colIndex'])
@php
$attributes = $attributes->merge(['wire:key' => 'cell-'.$rowIndex.'-'.$colIndex.'-'.$component->id]);
$theme = $component->getTheme();
$customAttributes = $component->getTdAttributes($column, $row, $colIndex, $rowIndex)
@endphp
@if ($theme === 'tailwind')
<td
@if ($column->isClickable())
onclick="window.open('{{ $component->getTableRowUrl($row) }}', '{{ $component->getTableRowUrlTarget($row) ?? '_self' }}')"
@endif
{{
$attributes->merge($customAttributes)
->class(['px-6 py-4 whitespace-nowrap text-sm font-medium dark:text-white' => $customAttributes['default'] ?? true])
->class(['hidden sm:table-cell' => $column && $column->shouldCollapseOnMobile()])
->class(['hidden md:table-cell' => $column && $column->shouldCollapseOnTablet()])
->except('default')
}}
>
{{ $slot }}
</td>
@elseif ($theme === 'bootstrap-4' || $theme === 'bootstrap-5')
<td
@if ($column->isClickable())
onclick="window.open('{{ $component->getTableRowUrl($row) }}', '{{ $component->getTableRowUrlTarget($row) ?? '_self' }}')"
style="cursor:pointer"
@endif
{{
$attributes->merge($customAttributes)
->class(['' => $customAttributes['default'] ?? true])
->class(['d-none d-sm-table-cell' => $column && $column->shouldCollapseOnMobile()])
->class(['d-none d-md-table-cell' => $column && $column->shouldCollapseOnTablet()])
->except('default')
}}
>
{{ $slot }}
</td>
@endif