CrudKit\CrudKitApp::renderToString PHP Method

renderToString() public method

Render your CrudKit app and return it as a string
public renderToString ( )
    public function renderToString()
    {
        if (!isset($this->staticRoot)) {
            throw new \Exception("Please set static root using `setStaticRoot`");
        }
        $controller = new MainController($this);
        return $controller->handle();
    }