© 2026 Hedgehog Software, LLC
protected function getCreateFormAction(): Action { return Action::make('create') ->action('create') ->requiresConfirmation(); }
protected function getCreateFormAction(): Action { return parent::getCreateFormAction() ->submit(null) ->requiresConfirmation() ->action(fn () => $this->create()); }