feat: meal post visibility

This commit is contained in:
2026-05-16 17:32:02 +02:00
parent 7b8ede2a1a
commit 1964b60949
9 changed files with 145 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App\Enums;
enum MealPostVisibility: string
{
case Private = 'private';
case Public = 'public';
case Followers = 'followers';
}