Socieboy\Forum\Controllers\ForumController::topic PHP Method

topic() public method

All conversations are listed.
public topic ( string $topic_id ) : Illuminate\View\View
$topic_id string
return Illuminate\View\View
    public function topic($topic_id)
    {
        $conversations = $this->conversationRepo->topic($topic_id);
        return view('Forum::index', compact('conversations', 'topic_id'));
    }