Fungku\Kwiki\Http\Controllers\WikiController::makePage PHP Method

makePage() public method

public makePage ( ) : Illuminate\View\View
return Illuminate\View\View
    public function makePage()
    {
        $wikiPath = base_path($this->wikiPath);
        $post = implode('/', func_get_args());
        $content = $this->pagemark->getContent($wikiPath, $post);
        return view($this->wikiView, $content);
    }