public function actionRemove($id)
 {
     Article::deleteAll(['id' => $id]);
     return $this->redirect(Url::to(['/articles/article']));
 }