laravel-echo-server icon indicating copy to clipboard operation
laravel-echo-server copied to clipboard

Update README.md

Open patternhelloworld opened this issue 5 years ago • 0 comments

Update README.md to give a solution to preventing an error message "Unable to join channel. Member data for presence channel missing."

There is additoinal info on the code below. Link

    public function broadcast(Request $request)
    {
        $channel_name = $request['channel_name'];

        $user = $request->user()->toArray();
        $user['user_id'] = $user['id'];
        $user['user_info'] = $user;
        return response()->json(['channel_data' => $user], 200);

    }

patternhelloworld avatar Mar 21 '20 04:03 patternhelloworld