xb23
Save edit form with two fields: Select & Livewire table component
ive discovered a workaround, is to move the button to the header eg:
public function getFormActions(): array
{
return [];
}
protected function getHeaderActions(): array
{
return [
$this->getSaveFormAction()
->submit(null)
->action(fn() => $this->save()),
$this->getCancelFormAction(),
];
}
12 replies