Backend\FormCategoriesController::edit PHP Метод

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

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