예제 #1
0
 /**
  * Creates a new SeoModel model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new SeoModel();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         Yii::$app->session->setFlash('success', 'Seo has been created.');
         return $this->redirect(['index']);
     }
     //        return $this->render('@vendor/kravchukdim/yii2seo/views/seo/create', [
     return $this->render('@vendor/kravchukdim/yii2seo/views/seo/create', ['model' => $model]);
 }