Files
lucent-laravel/src/Id/Id.php
T
2023-10-02 23:10:49 +03:00

14 lines
161 B
PHP

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