user = $user; $this->notificationId = $notificationId; } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn(): array { return [ new privateChannel('users.admin'), ]; } public function broadcastAs() { return 'users.registration'; } }