filament_newbie
Unable to get notification broadcasted to pusher
i solve it by put these code in base.blade.php
<script type="module">
if (window.Echo) {
Echo.private('App.Models.User.${userId}')
.listen('.database-notifications.sent', (e) => {
console.log(e);
});
}
</script>
8 replies