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 ?
1 Reply
PS: I already tried and created a custom Page, and the result is almost the same, but the secondary page with form will not appear as it belongs to the "parent" page.