First commit

This commit is contained in:
dyzulk
2025-12-30 12:11:01 +07:00
commit f68f34980a
150 changed files with 22717 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Helpers;
use Illuminate\Support\Str;
class UuidHelper
{
/**
* Generate a unique 32-character hexadecimal UUID (without dashes).
*
* @return string
*/
public static function generate()
{
return str_replace('-', '', (string) Str::uuid());
}
}