Live notifications

Im a little confused how notifications are working. So I've setup and installed pusher and echo etc.

This is my notification
                $message = $e->getMessage();
                Notification::make()
                    ->title('Translation failed')
                    ->body($message)
                    ->broadcast($this->initiator);


I have a queue:listen going, I can see the BroadcastNotificationCreated event, I can see in my pusher dashboard, the channel message come through and tells me the format is filament etc. But no notification comes through while im on my admin panel. What am I missing?
Was this page helpful?