/**
  * Renders the index view for the module
  * @return string
  */
 public function actionIndex()
 {
     $dataProvider = new ActiveDataProvider(['query' => Category::find()->roots()]);
     return $this->render('index', ['dataProvider' => $dataProvider]);
 }