Pusher error: The data content of this event exceeds the allowed maximum (10240 bytes)
I’m working on a project where I want to live display users’ points whenever the gain or lose points. I have an api that sends event to the frontend: public function test(Request $request){ $message = $request->message; $users = User::all()->where(‘company_id’, $message); event(new MyEvent([$users])); } Whenever the api is called, I recieve the following error: Illuminate\Broadcasting\BroadcastException: Pusher… Read More Pusher error: The data content of this event exceeds the allowed maximum (10240 bytes)