vali 6 년 전
부모
커밋
46f0a06a20
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Logic/WinfailLogic.php

+ 1 - 1
app/Logic/WinfailLogic.php

@@ -147,7 +147,7 @@ class WinfailLogic
 
     public function getOddsTypeData($game_code, $match_id)
     {
-        $ret = DB::table('money_buy_match')->select("p_code", "odds_code", "condition", "bet_type", "is_champion", "lg_id")->where(['match_id' => $match_id, 'game_code' => $game_code])->groupBy('p_code', 'odds_code', 'condition', 'bet_type', 'is_champion')->get();
+        $ret = DB::table('money_buy_match')->select("p_code", "odds_code", "condition", "bet_type", "is_champion")->where(['match_id' => $match_id, 'game_code' => $game_code])->groupBy('p_code', 'odds_code', 'condition', 'bet_type', 'is_champion')->get();
         return $ret;
     }