class FavoritesTable
{
public static function configure(Table $table): Table
{
return $table
->contentGrid([
'sm' => 2,
'lg' => 3,
])
->recordClasses([
'!p-0 !m-0 !border-0 !shadow-none !bg-transparent !ring-0 !overflow-hidden',
])
->columns([
View::make('filament.tables.columns.favorite-card'),
]);
}
}
class FavoritesTable
{
public static function configure(Table $table): Table
{
return $table
->contentGrid([
'sm' => 2,
'lg' => 3,
])
->recordClasses([
'!p-0 !m-0 !border-0 !shadow-none !bg-transparent !ring-0 !overflow-hidden',
])
->columns([
View::make('filament.tables.columns.favorite-card'),
]);
}
}