GoogleService::class, ]; } public function getClientSecretAttribute(?string $value): ?string { return $value ? Crypt::decryptString($value) : null; } public function setClientSecretAttribute(?string $value): void { $this->attributes['client_secret'] = $value ? Crypt::encryptString($value) : null; } public function getRefreshTokenAttribute(?string $value): ?string { return $value ? Crypt::decryptString($value) : null; } public function setRefreshTokenAttribute(?string $value): void { $this->attributes['refresh_token'] = $value ? Crypt::encryptString($value) : null; } }