Laravel Eloquent $model->save() saving but with different value
When updating my cart model, I run: $cart->transaction_id= $result->salePaymentRequestResult->token; $cart->save(); This does update my cart. But it with different value. Why is my model not being updated correctly? I get no errors. The cart does not get updated in the…