diff --git a/app/Casts/EncryptedCast.php b/app/Casts/EncryptedCast.php index a65e00aab386..da17fac8b916 100644 --- a/app/Casts/EncryptedCast.php +++ b/app/Casts/EncryptedCast.php @@ -16,8 +16,8 @@ use Illuminate\Contracts\Database\Eloquent\CastsAttributes; class EncryptedCast implements CastsAttributes { public function get($model, string $key, $value, array $attributes) - {nlog($value); - return !$value ? null : decrypt($value); + { + return ! is_null($value) ? decrypt($value) : null; } public function set($model, string $key, $value, array $attributes)