/**
  * Creates a new Permission model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Permission();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['index']);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
 /**
  * Creates a new Permission model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate($category)
 {
     Permission::setMenus($category);
     $model = new Permission();
     $model->category = $category;
     if ($model->load(Yii::$app->request->post())) {
         $model->save();
         return $this->redirect(['index', 'category' => $category]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }