ФИКС ОШИБКИ Something wrong showSlider!!! (С ВАС СИМПАТИИ)
Заходим в gamecontroller и ищем функцию getWinners
Там будет Что то связанное с ref
Удаляем это Тоесть вот это :
//ref
$proverka_koda = DB::table('users')->where('id',$this->game->winner_id)->pluck('ref_activ');
if($proverka_koda == 1){
$account_id = $this->game->winner_id;
$account = DB::table('users')->where('id',$account_id)->pluck('steamid64');
$ref_count = $this->game->price * 0.01;
$ref_id = DB::table('ref_list')->where('id_ref',$account)->pluck('ref_id');
$ref_money = DB::table('users')->where('steamid64',$ref_id)->pluck('money');
$ref_money1 = $ref_money + $ref_count;
DB::table('users')->where('steamid64', $ref_id)->update(['money' => $ref_money1]);
$pribil = DB::table('ref_list')->where('id_ref',$account)->pluck('pribil');
$pribil1 = $pribil + $ref_count;
DB::table('ref_list')->where('id_ref', $account)->update(['pribil' => $pribil1]);
}
//ref
PROFFIT! С вам симпатии)