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