feat: meal post type

This commit is contained in:
2026-05-17 19:27:32 +02:00
parent bfe11fea98
commit c9b51f3225
5 changed files with 50 additions and 1 deletions
+15
View File
@@ -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";
}