diff --git a/src/Form.php b/src/Form.php index f61e799..cf8e763 100644 --- a/src/Form.php +++ b/src/Form.php @@ -185,6 +185,10 @@ public function pushField(Field $field): self */ public function model(): Model { + if ($this->model instanceof Actions\Interactor\Form) { + return $this->model->getRow(); + } + return $this->model; }