tweet_id = $tweet->id; $this->tweet_date = strtotime($tweet->tweet_date); $this->team_name = $tweet->team->name; $this->team_color = $tweet->team->color; $this->player_username = $tweet->player->twitter; $this->player_photo = $tweet->player->photo; $this->text = $tweet->text; $this->photos = json_decode($tweet->photo); $this->mission = $tweet->mission->hashtag; $this->mission_id = $tweet->mission_id; } /** * Get the channels the event should broadcast on. * * @return Channel|array */ public function broadcastOn() { return ['tweet-queue']; } }