I have a problem, laravel eloquent not save the updated fields when i call save function there is my example :
$user->solde = $user->solde + 2000;
$user->save();
the solde field is a double type in database, eloquent not fire event on update solde.