How to set every row to the same value with Laravel's Eloquent/Fluent?
Just to keep this thread current, you can update all rows against an Eloquent model directly using:
Model::query()->update(['confirmed' => 1]);
Well, an easy answer: no, you can't with eloquent. A model represents 1 row in the database, it wouldn't make sense if they implemented this.
However, there is a way to do this with fluent:
$affected = DB::table('table')->update(array('confirmed' => 1));
or even better
$affected = DB::table('table')->where('confirmed', '=', 0)->update(array('confirmed' => 1));
You can do this with elquent (laravel 4):
MyModel::where('confirmed', '=', 0)->update(['confirmed' => 1])