i want orderBy topic_id or created_at DESC defaul index is ASC ``` $query = Comment::where('topic_id', $topicId) ->where('created_at', '>=', 0) ->orderBy($conditions['orderBy']); ``` 