Backend\UserController::show PHP Method

show() public method

Display the specified user.
public show ( integer $id ) : Response
$id integer
return Response
    public function show($id)
    {
        $user = Sentry::findUserById($id);
        $this->layout->title = 'User Information';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.users.show')->with('user', $user);
    }