Уведомить несколько пользователей Laravel
use Illuminate\Support\Facades\Notification;
// Get the users
$users = User::where(...)->get();
// Send the notifications
Notification::send($users, new TaskAssigned($task));
Sanjaya