Undefined variable: brand_id
/var/www/u6974099/data/www/famillia.ru/classes/App/Controller/Category.php
180                                                     ->connections
181                                                     ->post
182                                                     ->where('status', '!=', 'hide')
183                                                     ->where('brand_id', $brand_id)
184                                                     ->order_by('rating', 'asc');
185    
/var/www/u6974099/data/www/famillia.ru/vendor/phpixie/core/classes/PHPixie/Controller.php
103    		$this->execute = true;
104    		$this->before();
105    		if ($this->execute)
106    			$this->$action();
107    		if ($this->execute)
108    			$this->after();
/var/www/u6974099/data/www/famillia.ru/vendor/phpixie/core/classes/PHPixie/Request.php
187    		$class = $this->param('namespace',$this->pixie->app_namespace).'Controller\\'.ucfirst($this->param('controller'));
188    		$controller = $this->pixie->controller($class);
189    		$controller->request = $this;
190    		$controller->run($this->param('action'));
191    		return $controller->response;
192    	}
/var/www/u6974099/data/www/famillia.ru/vendor/phpixie/core/classes/PHPixie/Pixie.php
229    		try {
230    		
231    			$request =  $this->http_request();
232    			$response = $request->execute();
233    			$response->send_headers()->send_body();
234    			
/var/www/u6974099/data/www/famillia.ru/web/index.php
5    $loader->add('', $root.'/classes/');
6    
7    $pixie = new \App\Pixie;
8    $pixie->bootstrap($root)->handle_http_request();