feat: meal post type
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum MealPostType: string
|
||||
{
|
||||
case BREAKFAST = 'breakfast';
|
||||
case LUNCH = 'lunch';
|
||||
case DINNER = 'dinner';
|
||||
case BRUNCH = 'brunch';
|
||||
case SNACK = 'snack';
|
||||
case DRINK = 'drink';
|
||||
case SUPPLEMENT = "supplement";
|
||||
case OTHER = "other";
|
||||
}
|
||||
Reference in New Issue
Block a user