16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Str;
|
|
|
|
class CodeGeneratorService
|
|
{
|
|
public function generateCode(string $type) {
|
|
return "${type}|" . Str::random(20);
|
|
}
|
|
}
|