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