Ejemplo n.º 1
0
 protected function getDetailQuery($id)
 {
     $builder = parent::getDetailQuery($id);
     $builder->leftJoin('product.tax', 'tax')->leftJoin('product.attribute', 'attribute');
     $builder->addSelect(array('tax', 'attribute'));
     return $builder;
 }