File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
resources/views/components Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
@endif
14
14
{{
15
15
$attributes -> merge ($customAttributes )
16
- -> class ([' px-6 py-4 whitespace-nowrap text-sm font-medium dark:text-white' => $component -> isTailwind () && $customAttributes [' default' ] ?? true ])
16
+ -> class ([' px-6 py-4 whitespace-nowrap text-sm font-medium dark:text-white' => $component -> isTailwind () && ( $customAttributes [' default' ] ?? true ) ])
17
17
-> class ([' hidden' => $component -> isTailwind () && $column && $column -> shouldCollapseAlways ()])
18
18
-> class ([' hidden sm:table-cell' => $component -> isTailwind () && $column && $column -> shouldCollapseOnMobile ()])
19
19
-> class ([' hidden md:table-cell' => $component -> isTailwind () && $column && $column -> shouldCollapseOnTablet ()])
20
- -> class ([' ' => $component -> isBootstrap () && $customAttributes [' default' ] ?? true ])
20
+ -> class ([' ' => $component -> isBootstrap () && ( $customAttributes [' default' ] ?? true ) ])
21
21
-> class ([' d-none' => $component -> isBootstrap () && $column && $column -> shouldCollapseAlways ()])
22
22
-> class ([' d-none d-sm-table-cell' => $component -> isBootstrap () && $column && $column -> shouldCollapseOnMobile ()])
23
23
-> class ([' d-none d-md-table-cell' => $component -> isBootstrap () && $column && $column -> shouldCollapseOnTablet ()])
Original file line number Diff line number Diff line change 12
12
13
13
{{
14
14
$attributes -> merge ($customLabelAttributes )
15
- -> class ([' block text-sm font-medium leading-5 text-gray-700 dark:text-white' => $isTailwind && $customLabelAttributes [' default' ] ?? true ])
16
- -> class ([' d-block' => $isBootstrap && $filterLayout == ' slide-down' && $customLabelAttributes [' default' ] ?? true ])
17
- -> class ([' mb-2' => $isBootstrap && $filterLayout == ' popover' && $customLabelAttributes [' default' ] ?? true ])
15
+ -> class ([' block text-sm font-medium leading-5 text-gray-700 dark:text-white' => $isTailwind && ( $customLabelAttributes [' default' ] ?? true ) ])
16
+ -> class ([' d-block' => $isBootstrap && $filterLayout == ' slide-down' && ( $customLabelAttributes [' default' ] ?? true ) ])
17
+ -> class ([' mb-2' => $isBootstrap && $filterLayout == ' popover' && ( $customLabelAttributes [' default' ] ?? true ) ])
18
18
-> except (' default' )
19
19
} }
20
20
You can’t perform that action at this time.
0 commit comments