diff --git a/src/Dtisgodsson/Elocrypt/ElocryptTrait.php b/src/Dtisgodsson/Elocrypt/ElocryptTrait.php index 23f0940..c163fd4 100644 --- a/src/Dtisgodsson/Elocrypt/ElocryptTrait.php +++ b/src/Dtisgodsson/Elocrypt/ElocryptTrait.php @@ -79,11 +79,12 @@ public function update(Array $attributes = []) { try { - $attributes[$key] = Crypt::encrypt($value); + $decrypted = Crypt::decrypt($value); + $attributes[$key] = $value; } catch(DecryptException $exception) { - $attributes[$key] = $value; + $attributes[$key] = Crypt::encrypt($value); } } }