в контроллере OrderController, в action update создавать связь по одной одной модели а по другой обновлять?
на данный момент повторения кода :
$model = new Order();
$note = new Note();
if ($this->request->isPost && $model->load($this->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success', "Order updated successfully.");
return $this->redirect(['update', 'id' => $model->id]);
}
$note->user_id = Yii::$app->user->identity->id;
$note->order_id = $model->id;
if ($this->request->isPost && $note->load($this->request->post()) && $note->save()) {
Yii::$app->session->setFlash('success', "Note created successfully.");
}
Что то вроде реализации комментариев к посту но только при action Update
Обсуждают сегодня