Итак, я хочу обновить две разные учетные записи пользователей с одинаковым значением.
Сценарий: Пользователь 1 переводит деньги Пользователю 2:
$transfer_from = $account->decrement('balance', $amount);
$transfer_to = Account::where('user_wallet_address', $receiver_wallet_address)->increment('balance', $amount);
Но, что я хочу, это что-то вроде этого:
$account->decrement('balance', $amount)->$transfer_to;
Как в if the decrement succeeds, then update the other user's balance, otherwise, both should fail
Мысли