From e1471248fe8f8a4fc6edef28fe702245c2fde48d Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Thu, 26 Dec 2019 19:07:51 +0100 Subject: User: Add pronoun statement --- src/Models/User/PersonalData.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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', -- cgit v1.2.3-54-g00ecf