I\'ve built a simple form model & view, a simple AR model, and a simple controller. The form model assigns the correct values to the AR instance, but when I call save(),
For who is struggling with this problem, I would remember to check the beforeSave method, if present. I mistakenly commented out the return statement.
beforeSave
return
public function beforeSave($insert) { // never toggle comment on this!!! return parent::beforeSave( $insert); }