I have a model, Request, that has some related records, $items. I can't get $items to update when I save() the Request.
When saving, $items is an array of models. I have set up the proper hasMany() relationship between Request and $items.
This saving was working earlier, when $items was a Simple ResultSet. Now that I've changed it to just an array, no saving gets done.
No validation errors are being generated, and no SQL is happening related no the items.