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