|
35 | 35 | : null;
|
36 | 36 | @endphp
|
37 | 37 | <th
|
38 |
| - x-data="{ sortable: @js(data_get($column, 'sortable')) }" |
39 |
| - @if ($sortOrder) sort_order="{{ $sortOrder }}" @endif |
40 |
| - class="{{ theme_style($theme, 'table.header.th') . ' ' . data_get($column, 'headerClass') }}" |
41 |
| - @if ($isFixedOnResponsive) fixed @endif |
42 |
| - @if (data_get($column, 'enableSort')) x-multisort-shift-click="{{ $this->getId() }}" |
| 38 | + x-data="{ sortable: @js(data_get($column, 'sortable')) }" |
| 39 | + @if ($sortOrder) sort_order="{{ $sortOrder }}" @endif |
| 40 | + class="{{ theme_style($theme, 'table.header.th') . ' ' . data_get($column, 'headerClass') }}" |
| 41 | + @if ($isFixedOnResponsive) fixed @endif |
| 42 | + @if (data_get($column, 'enableSort')) x-multisort-shift-click="{{ $this->getId() }}" |
43 | 43 | wire:click="sortBy('{{ $field }}')" @endif
|
44 |
| - style="{{ data_get($column, 'hidden') === true ? 'display:none' : ''; }} width: max-content !important; @if (data_get($column, 'enableSort')) cursor:pointer; @endif {{ data_get($column, 'headerStyle') }}" |
| 44 | + style="{{ data_get($column, 'hidden') === true ? 'display:none;' : '' }} width: max-content !important; @if (data_get($column, 'enableSort')) cursor:pointer; @endif {{ data_get($column, 'headerStyle') }}" |
45 | 45 | >
|
46 | 46 | <div
|
47 |
| - class="{{ theme_style($theme, 'cols.div') }}" |
| 47 | + class="{{ theme_style($theme, 'cols.div') }}" |
48 | 48 | >
|
49 | 49 | <span data-value>{!! data_get($column, 'title') !!}</span>
|
50 | 50 |
|
51 | 51 | @if (data_get($column, 'enableSort'))
|
52 | 52 | <x-dynamic-component
|
53 |
| - component="{{ $this->sortIcon($field) }}" |
54 |
| - width="16" |
| 53 | + component="{{ $this->sortIcon($field) }}" |
| 54 | + width="16" |
55 | 55 | />
|
56 | 56 | @endif
|
57 | 57 | </div>
|
|
0 commit comments