Solve your laravel problems.
I have the following query that is working but I'm wondering what the Eloquent ORM equivalent would be?
DB::table('exercises')->whereIn('id', $ids)->update($request->all());
Thanks