Can we update multiple columns based on multiple different condition in Laravel using Eloquent Lets Say, I want to
Design::where('name','A')->update(['override_value'=>'some_value1']);
Design::where('name','B')->update(['override_value'=>'some_value2']);
Design::where('name','C')->update(['override_value'=>'some_value3']);
Do i have to repeat this query or is there a way to do this in a single update query ?