how to bulk update in laravel 4

eloquent, laravel, laravel-4, mysql, php

Solution

You could use eloquent.

Model::whereIn($items_array)->update(array('Foo' => 'Bar'));

Problem

Hi I was wondering how I can do a bulk update in laravel 4 rather then looping and updating in chunks? I know bulk insert is like this: ``` $invoiceitem->insert($items_array); ```

Original source

Related problems