how to decide where to save the informations if you have more than one table in the database that are the same laravel code example
Example: laravel update from query
$affected = DB::table('users')
->where('id', 1)
->update(['votes' => 1]);