Another quick tip – if you need to know, how many rows were actually affected if you launch Eloquent update() statement – it cannot be easier.
So, for example, you launch something like this:
$products->whereNull('category_id')->update(['category_id' => 2]);
So how to find out how many products were actually without category before that update? The thing is that update() method returns that affected rows amount. You don’t have to call any affected_rows or anything like that. Eloquent brings that directly to you:
$affected = $products->whereNull('category_id')->update(['category_id' => 2]); echo "Affected rows: " . $affected;
Isn’t Eloquent great?
How to get how many rows delete using delete() function?
Hi Pavankumar,
Same thing: http://stackoverflow.com/questions/33462767/laravel-5-return-number-of-affected-rows-mysql
$affected return true or false not count of affected rows