summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-12-26 19:07:51 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-12-26 19:18:47 +0100
commite1471248fe8f8a4fc6edef28fe702245c2fde48d (patch)
tree62fc2899543b6c0b62c69d1728e39c4a9f0572c9 /src
parentec47d124bb1626d1aa604d7fdb6ddbbd77c14987 (diff)
User: Add pronoun statement
Diffstat (limited to 'src')
-rw-r--r--src/Models/User/PersonalData.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Models/User/PersonalData.php b/src/Models/User/PersonalData.php
index 228f55f3..445a2ceb 100644
--- a/src/Models/User/PersonalData.php
+++ b/src/Models/User/PersonalData.php
@@ -8,12 +8,14 @@ use Illuminate\Database\Query\Builder as QueryBuilder;
/**
* @property string|null $first_name
* @property string|null $last_name
+ * @property string|null $pronoun
* @property string|null $shirt_size
* @property Carbon|null $planned_arrival_date
* @property Carbon|null $planned_departure_date
*
* @method static QueryBuilder|PersonalData[] whereFirstName($value)
* @method static QueryBuilder|PersonalData[] whereLastName($value)
+ * @method static QueryBuilder|PersonalData[] wherePronoun($value)
* @method static QueryBuilder|PersonalData[] whereShirtSize($value)
* @method static QueryBuilder|PersonalData[] wherePlannedArrivalDate($value)
* @method static QueryBuilder|PersonalData[] wherePlannedDepartureDate($value)
@@ -34,6 +36,7 @@ class PersonalData extends HasUserModel
'user_id',
'first_name',
'last_name',
+ 'pronoun',
'shirt_size',
'planned_arrival_date',
'planned_departure_date',