Components\Posts\Controllers\Backend\PostsController::edit PHP Method

edit() public method

Show the form for editing the specified post.
public edit ( integer $id ) : Response
$id integer
return Response
    public function edit($id)
    {
        $this->layout->title = 'Edit ' . Str::title($this->type);
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.posts.create_edit')->with('post', Post::findOrFail($id));
    }