We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97d6b5 commit 3942a1bCopy full SHA for 3942a1b
1 file changed
src/PrefillGravityForms/Models/UserModel.php
@@ -92,4 +92,19 @@ public function fullName(bool $withInitials = false): string
92
93
return implode(' ', array_filter($nameParts));
94
}
95
+
96
+ public function zipcode(): string
97
+ {
98
+ return (string) ($this->data['verblijfplaats']['postcode'] ?? '');
99
+ }
100
101
+ public function houseNumber(): string
102
103
+ return (string) ($this->data['verblijfplaats']['huisnummer'] ?? '');
104
105
106
+ public function houseLetter(): string
107
108
+ return (string) ($this->data['verblijfplaats']['huisletter'] ?? '');
109
110
0 commit comments