14 lines
190 B
PHP
Executable File
14 lines
190 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
class SchoolIdService
|
|
{
|
|
public function generate(): string
|
|
{
|
|
return strtoupper('SID-' . Str::random(8));
|
|
}
|
|
}
|