Skip to main content
Tutorial Free

Did you know: affected rows after Eloquent update

July 03, 2015
1 min read
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?

Enjoyed This Tutorial?

Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.

Comments & Discussion

No comments yet…

We'd Love Your Feedback

Tell us what you like or what we can improve

Feel free to share anything you like or dislike about this page or the platform in general.