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

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

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