App\APIObjects\Topic::toArray PHP Method

toArray() public method

public toArray ( )
    public function toArray()
    {
        return ['id' => $this->topic->id, 'title' => $this->topic->title, 'description' => $this->topic->description, 'votes' => $this->topic->votes()->count(), 'status' => $this->topic->status, 'episode_id' => $this->topic->episode ? $this->topic->episode->id : null, 'userVotedFor' => in_array($this->topic->id, Auth::user()->votes->lists('topic_id')->toArray())];
    }