diff --git a/app/Events/UserCreated.php b/app/Events/UserCreated.php deleted file mode 100644 index a27ee47..0000000 --- a/app/Events/UserCreated.php +++ /dev/null @@ -1,45 +0,0 @@ -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'; - } -}