Laravel 8 监听通知
通知将在使用 {notifiable}.{id}
形式格式化的私有频道上进行广播。因此,如果您要发送通知到 ID 为 1
的 App\Models\User
实例上,通知将在 App.User.1
私有频道上广播。当使用 Laravel Echo 时,您可以使用 notification
辅助函数来方便的监听通知:
Echo.private('App.User.' + userId)
.notification((notification) => {
console.log(notification.type);
});