feat: cron

This commit is contained in:
2026-05-18 20:32:32 +02:00
parent 19d106a3ed
commit f5a3e79c8a
16 changed files with 547 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Enums;
enum DietType: string
{
case OMNIVORE = 'omnivore';
case VEGETARIAN = 'vegetarian';
case VEGAN = 'vegan';
case PESCATARIAN = 'pescatarian';
case KETO = 'keto';
case LOW_CARB = 'low_carb';
}