コード例 #1
0
ファイル: ProductModule.php プロジェクト: nosun/laravel_base
 public function getProductInfo($condition)
 {
     $term = new Product();
     $term->setConnection($this->connection);
     $result = self::formatCondition($term->newQuery(), $condition)->get();
     return $result;
 }