businessId.'.chat.'.$this->message->chat_room_id)]; } public function broadcastAs(): string { return 'message.sent'; } public function broadcastWith(): array { return [ 'message' => [ 'id' => $this->message->id, 'chat_room_id' => $this->message->chat_room_id, 'body' => $this->message->body, 'type' => $this->message->type, 'user_id' => $this->message->user_id, 'user' => $this->message->user, 'created_at' => $this->message->created_at?->toIso8601String(), ], ]; } }