i\'m trying to figure out how to use/test the lockforupdate correctly, but i found is not function like what i expected
this is just testing
public f
SharedLock:
DB::table('users')->where('votes', '>', 100)->sharedLock()->get();
LockForUpdate:
DB::table('users')->where('votes', '>', 100)->lockForUpdate()->get();
Laravel Docs