Socieboy\Forum\Controllers\ConversationController::edit PHP Method

edit() public method

Display the conversation edit form.
public edit ( string $slug ) : Illuminate\View\View
$slug string
return Illuminate\View\View
    public function edit($slug)
    {
        $conversation = $this->conversationRepo->findBySlug($slug);
        return view('Forum::Conversations.edit')->with(compact('conversation'));
    }