Components\Posts\Controllers\Backend\PostCategoriesController::edit PHP Метод

edit() публичный Метод

Show the form for editing the specified post.
public edit ( integer $id ) : Response
$id integer
Результат Response
    public function edit($id)
    {
        $this->layout->title = 'Edit ' . Str::title($this->type) . ' Category';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.categories.create_edit')->with('post_cat', Category::findOrFail($id))->with('type', $this->type);
    }