Files
lucent-laravel/src/Id/Id.php
T

14 lines
161 B
PHP
Raw Normal View History

2023-10-02 23:10:49 +03:00
<?php
namespace Lucent\Id;
use Illuminate\Support\Str;
class Id
{
public static function new(): string
{
return (string) Str::uuid();
}
}