id === (int) $id; }); Broadcast::channel('chat.{receiverId}', function ($user, $receiverId) { return (int) $user->id === (int) $receiverId; }); Broadcast::channel('notifications.{userId}', function ($user, $userId) { return (int) $user->id === (int) $userId; });