发布推送

This commit is contained in:
ROmani
2024-02-26 00:41:25 +08:00
parent 70304f730b
commit 1a9008b318
33 changed files with 1515 additions and 216 deletions

View File

@ -1,6 +1,8 @@
<?php
namespace App\Tools;
use Illuminate\Support\Str;
class Tools
{
@ -44,5 +46,11 @@ class Tools
return rand(100000,999999);
}
static function genUuid(): string
{
return Str::orderedUuid();
}
}