feat: meal post ingredients

This commit is contained in:
2026-05-18 14:39:57 +02:00
parent 7916e7f718
commit 7a907f2b17
12 changed files with 404 additions and 10 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Enums;
enum IngredientUnit: string
{
case GRAM = 'g';
case KILOGRAM = 'kg';
case MILLILITER = 'ml';
case LITER = 'l';
case PIECE = 'piece';
case TEASPOON = 'tsp';
case TABLESPOON = 'tbsp';
}