Files
lucent-laravel/src/CommonData/Id.php
T
2024-03-23 12:12:13 +02:00

14 lines
169 B
PHP

<?php
namespace Lucent\CommonData;
use Illuminate\Support\Str;
class Id
{
public static function new(): string
{
return (string) Str::uuid();
}
}