Files
alrahma_sunday_school_api/app/Services/Notifications/NotificationRecipientService.php
T
2026-06-09 02:32:58 -04:00

15 lines
278 B
PHP

<?php
namespace App\Services\Notifications;
use App\Models\User;
class NotificationRecipientService
{
public function getRecipients(string $targetGroup): array
{
$rows = User::getUsersByRole($targetGroup);
return is_array($rows) ? $rows : [];
}
}