public function actionAjax($prod_id = null)
 {
     if (Yii::$app->request->isAjax) {
         $categories = new Categories();
         Yii::$app->response->format = Response::FORMAT_JSON;
         return $categories->getAll($prod_id);
     } else {
         throw new HttpException(404, 'The specified post cannot be found.');
     }
 }