feat: filament

This commit is contained in:
2026-07-09 14:23:25 +02:00
parent 462be44fa5
commit dc00141d25
61 changed files with 3153 additions and 11 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace App\Enums;
enum UserRole: string
{
case ADMIN = 'admin';
case USER = 'user';
}