feat: meal post ingredients
This commit is contained in:
@@ -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';
|
||||
}
|
||||
Reference in New Issue
Block a user