Ejemplo n.º 1
0
 public function actionAdd()
 {
     //  if (!\Yii::$app->user->isGuest) {
     //     return $this->goHome();
     // }validate
     $model = new AddForm();
     if ($model->load(Yii::$app->request->post()) && $model->validate()) {
         return $this->render('add', ['model' => $model]);
     } else {
         return $this->render('add', ['model' => $model]);
     }
 }