/** * Creates a new Match model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate() { $model = new Match(); if ($model->load(Yii::$app->request->post()) && $model->validate()) { $model->date = date('Y-m-d H:i', strtotime($model->date)); $model->save(false); return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('create', ['model' => $model]); } }