| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/4/25
- * Time: 14:09
- */
- namespace App\Lib\Settlement\Adapter;
- use Illuminate\Support\Facades\DB;
- class LqRule
- {
- /**
- * 篮球 独赢规则
- */
- public function capotRule($bet_match,$result_match,$result_match_r){
- $bet_match = DB::table('money_buy_match')->where('match_id', 3144414)->first();
- $result_match = DB::table('st_lq_result')->where('match_id', 3144414)->first();
- $result_match_r = DB::table('st_lq_result_record')->where('match_id', 3144414)->get()->toArray();
- dd($bet_match);
- }
- }
|