© 2026 Hedgehog Software, LLC
public function form(Form $form): Form { return $form->schema([ TextInput::make('name') ->required(), Actions::make([ Action::make('action') ->action(/** doing something **/) ]); }
livewire(MyPage::class) ->fillForm([ 'name' => 'something' ]) ->callAction('action');
livewire(MyPage::class) ->fillForm([ 'name' => 'something' ]) ->assertFormComponentActionExists('component','action') }