Skip to content

Commit

Permalink
Upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
nasrulhazim committed Oct 31, 2024
1 parent dd59ec9 commit 9f31b30
Show file tree
Hide file tree
Showing 2 changed files with 157 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/Concerns/InteractsWithLivewireForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function save()
$this->beforeSave();
}

$class = $this->getAction();
$class = $this->getAction(); // @todo should we create an action contract?
$action = (new $class($this->state));

Expand All @@ -97,7 +97,7 @@ public function save()
$action->setProperty('hashFields', $this->getHashFieldsMapping());
}

$action->execute();
$action->handle();

$this->record = $action->getRecord();

Expand Down
161 changes: 155 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9f31b30

Please sign in to comment.