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