user = $user; } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn(): array { return [ new privateChannel('admins-private'), ]; } public function broadcastAs() { return 'user.created'; } }