Answers for "notify multiple users laravel"

PHP
0

notify multiple users laravel

use Illuminate\Support\Facades\Notification;

// Get the users
$users = User::where(...)->get();

// Send the notifications
Notification::send($users, new TaskAssigned($task));
Posted by: Guest on March-19-2022

Browse Popular Code Answers by Language