FilamentF
Filament2y ago
lmtc

Submitting form from Section header action

I'm trying to add some additional fields to a form, but it doesn't seem to be submitting. I have this in the action but $record seems to be null like it's not running mount:

->action(function (array $data,Config $record) {
      $record->fill($data);
      $record->save();
})
Was this page helpful?