How to fill a header action modal form?

protected function getTableHeaderActions(): array
{
    return [
        Action::make('configure')
            ->form([
                Toggle::make('isEnabled'),
                TextColumn::make('name')
...

i want to fill the fields based on a db query
ive seen how to fill a filament form, but idk how to do it being inside a table builder
Was this page helpful?