public function afterSave($insert, $changedAttributes){
if ($insert) {
$parent= $this->parent_id ? $this->parent : false;
if($parent &&$parent->childs==false){
$parent->childs=true;
$parent->save();
}
}
}
Yii::$app->session->addFlash('error', 'не сработал afterSave, срочно звоните разрабу');
echo Yii::$app->session->getFlash('error');