This commit is contained in:
2024-03-23 12:12:13 +02:00
parent 8526fd471f
commit b8efa5f586
41 changed files with 343 additions and 71 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Lucent\CommonData;
use Illuminate\Support\Str;
class Id
{
public static function new(): string
{
return (string) Str::uuid();
}
}