Files
alrahma_sunday_school_api/app/Services/SchoolIdService.php
T
2026-03-05 12:29:37 -05:00

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));
}
}