We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5e8889 + c4de94f commit c6e1471Copy full SHA for c6e1471
resources/views/components/table/td/plain.blade.php
@@ -17,8 +17,8 @@
17
<td {{ $attributes
18
->merge($customAttributes)
19
->class(['' => $customAttributes['default'] ?? true])
20
- ->class(['none d-sm-table-cell' => $column && $column->shouldCollapseOnMobile()])
21
- ->class(['none d-md-table-cell' => $column && $column->shouldCollapseOnTablet()])
+ ->class(['d-none d-sm-table-cell' => $column && $column->shouldCollapseOnMobile()])
+ ->class(['d-none d-md-table-cell' => $column && $column->shouldCollapseOnTablet()])
22
->except('default')
23
}}>{{ $slot }}</td>
24
@endif
0 commit comments