Files
alrahma_sunday_school_api/app/Services/Frontend/ProfileIconService.php
T
2026-06-08 23:30:22 -04:00

36 lines
838 B
PHP

<?php
namespace App\Services\Frontend;
use App\Models\User;
class ProfileIconService
{
public function buildForUser(int $userId): array
{
$user = User::query()->find($userId);
if (! $user) {
return [
'userName' => 'User not found',
'userInitials' => '??',
];
}
$firstname = (string) ($user->firstname ?? '');
$lastname = (string) ($user->lastname ?? '');
$initials = '';
if ($firstname !== '') {
$initials .= strtoupper($firstname[0]);
}
if ($lastname !== '') {
$initials .= strtoupper($lastname[0]);
}
return [
'userName' => trim($firstname.' '.$lastname),
'userInitials' => $initials !== '' ? $initials : '??',
];
}
}