Мне удалось отправить уведомления всем users
администраторам, но теперь я просто хотел отправить конкретное c уведомление одному пользователю, используя id
.
public function store(Request $request) {
$employeeObjective = EmployeeObjective::updateOrCreate(
[ 'employee_id' => $request->employee_id ?? null ],
[
'employee_id' => $request->employee_id,
'rater_id_1' => $request->rater_id_1,
'status' => 'Pending',
]
);
// Working to send all admins
$admins = User::all()->filter(function($user) {
return $user->hasRole('Admin');
});
Notification::send($admins, new UserRegistered($employeeObjective));
// Not working
User::where('employee_id', $request->rater_id_1)->notify(new UserRegistered($employeeObjective));
}