Comment out group column in SettingsTable: Temporarily disabled the group column display in the settings table to streamline the interface while maintaining localization support for active status.

This commit is contained in:
Ümit Tunç
2025-10-29 17:28:39 -03:00
parent 307a94d6fd
commit 50fff6332b
@@ -58,13 +58,13 @@ class SettingsTable
default => 'gray', default => 'gray',
}) })
->formatStateUsing(fn (string $state): string => __("settings.type_{$state}")), ->formatStateUsing(fn (string $state): string => __("settings.type_{$state}")),
/*
TextColumn::make('group') TextColumn::make('group')
->label(__('settings.table_group')) ->label(__('settings.table_group'))
->badge() ->badge()
->color('primary') ->color('primary')
->formatStateUsing(fn (string $state): string => __("settings.group_{$state}")), ->formatStateUsing(fn (string $state): string => __("settings.group_{$state}")),
*/
IconColumn::make('is_active') IconColumn::make('is_active')
->label(__('settings.table_active')) ->label(__('settings.table_active'))
->boolean() ->boolean()