А не подскажете как в эту функцию передать id?
public function actionCreate()
{
$model = new Products();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('create', [
'model' => $model,
]);
}
protected function afterSave(){
parent::afterSave();
if($this->isNewRecord){
$model = Products::findOne($model->id);
$model->image = UploadedFile::getInstance($model, 'image');
if($model->image){
$model->upload();
}
}
}