feat: add user fields
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum PacePreference: string
|
||||
{
|
||||
case SLOW = 'slow';
|
||||
case NORMAL = 'normal';
|
||||
case FAST = 'fast';
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum PhysicalActivityLevel: string
|
||||
{
|
||||
case SEDENTARY = 'sedentary';
|
||||
case LIGHTLY_ACTIVE = 'lightly_active';
|
||||
case MODERATELY_ACTIVE = 'moderately_active';
|
||||
case VERY_ACTIVE = 'very_active';
|
||||
case ATHLETE = 'athlete';
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum UserSex: string
|
||||
{
|
||||
case MAN = 'man';
|
||||
case WOMAN = 'woman';
|
||||
case OTHER = 'other';
|
||||
case UNKNOWN = 'unknown';
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum WeightGoal: string
|
||||
{
|
||||
case LOSE_WEIGHT = 'lose_weight';
|
||||
case MAINTAIN_WEIGHT = 'maintain_weight';
|
||||
case GAIN_WEIGHT = 'gain_weight';
|
||||
}
|
||||
Reference in New Issue
Block a user