I am still new in laravel and i got this message error when I am insert using query builder
POST http://localhost:8000/index/bots 500 (Internal Server Error)
and this is in controller
$countries = array("Australia","Japan","Mexico","United States","Italia","Greece","France","Hungary","Estados Unidos","Deutschland","United Kingdom");
$country = $countries[rand(1,count($countries) - 1)];
$deviceId = "";
DB::table('players', 'stats')->insert(array(
'dealerId' => '1',
'username' => request('botName'),
'player' => request('botName'),
'banned' => '0',
'approve' => '1',
'winpot' => '100000',
'deviceId' => '.$deviceId.',
'myTime' => '0',
'country' => '.$country.',
'bot' => '1'
));