public function indexAction()
 {
     $this->view->setLayout('catalog');
     $this->view->categories = Category::find();
     $this->view->products = Product::find();
 }