Vasyl Dmytruk
Results
2
comments of
Vasyl Dmytruk
Try to add to your Post model rule [['title', 'content'], 'string']
Try in actionUpdate ``` ... $model=Post::find()->multilingual() ->select(['post.id','enabled', 'created_at', 'updated_at','title','content']) -> from (['post', 'postlang']) -> where (['post.id' => $id]) ->one(); ... ``` and in form view ``` ... ... ``` in...