Help hiding artifact from Resource
I have a Resource with Filament-Tree widget, I don't need the table, so I ended up "removing" it by returning a table without pagination:
public static function table(Table $table): Table
{
return $table
->paginated(false);
}
How can I attach a custom CSS class to the table so I can hide that shadow/highlight ?
public static function table(Table $table): Table
{
return $table
->paginated(false);
}
How can I attach a custom CSS class to the table so I can hide that shadow/highlight ?
