my code:
DB::transaction(function () {
       $foo = Foo::whereId(1)->lockForUpdate()->with('bars')->first();
       // dump foo & bars
       // update foo's columns
       // update bars' columns
   });and I run this code at the same time twice, first time it can update correctly, but the second time when I query the foo, foo's columns is correct, but the bars are still old(in database it's correct), why is it and how to solve it?
 
    