Backend\UserGroupsController::show PHP Method

show() public method

Display the specified user groups.
public show ( integer $id ) : Response
$id integer
return Response
    public function show($id)
    {
        $this->layout->title = 'All User Groups';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.user_groups.show');
    }