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

16 lines
279 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 : [];
}
}