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);
You could use eloquent.
Model::whereIn($items_array)->update(array('Foo' => 'Bar'));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With