LqRule.php 617 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/4/25
  6. * Time: 14:09
  7. */
  8. namespace App\Lib\Settlement\Adapter;
  9. use Illuminate\Support\Facades\DB;
  10. class LqRule
  11. {
  12. /**
  13. * 篮球 独赢规则
  14. */
  15. public function capotRule($bet_match,$result_match,$result_match_r){
  16. $bet_match = DB::table('money_buy_match')->where('match_id', 3144414)->first();
  17. $result_match = DB::table('st_lq_result')->where('match_id', 3144414)->first();
  18. $result_match_r = DB::table('st_lq_result_record')->where('match_id', 3144414)->get()->toArray();
  19. dd($bet_match);
  20. }
  21. }