Backend\MenuPositionsController::show PHP Method

show() public method

Display the specified menu positions.
public show ( integer $id ) : Response
$id integer
return Response
    public function show($id)
    {
        $menu_position = MenuPosition::findOrFail($id);
        $this->layout->title = $menu_position->title;
        $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.menu_positions.show')->with('menu_position', $menu_position);
    }