Laravel Controller Code para editar uma coluna em uma tabela
DB::table('users')
->where('id', 1)
->update(['votes' => 1]);
Nervous Nightingale
DB::table('users')
->where('id', 1)
->update(['votes' => 1]);