├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── blueprintdocs.php ├── example.apib ├── package.json ├── public ├── css │ ├── app.css │ ├── blueprintdocs.css │ └── vendor.css ├── fonts │ └── vendor │ │ └── bootstrap-sass │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── app.js │ └── blueprintdocs.js └── mix-manifest.json ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ └── blueprintdocs.js │ └── sass │ │ ├── _highlight.scss │ │ ├── _variables.scss │ │ ├── app.scss │ │ └── blueprintdocs.scss └── views │ ├── action.blade.php │ ├── index.blade.php │ ├── navigation.blade.php │ ├── parameters.blade.php │ ├── requestresponsebody.blade.php │ ├── resource.blade.php │ └── resource_group.blade.php ├── src ├── BlueprintDocs.php ├── BlueprintDocsController.php ├── BlueprintDocsServiceProvider.php ├── DescriptionParser.php ├── Elements │ ├── Action.php │ ├── Api.php │ ├── Asset.php │ ├── Base.php │ ├── HrefVariable.php │ ├── HttpRequest.php │ ├── HttpResponse.php │ ├── Mapping.php │ ├── Resource.php │ └── ResourceGroup.php └── routes.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /vendor 3 | .DS_Store 4 | .idea 5 | composer.lock -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/composer.json -------------------------------------------------------------------------------- /config/blueprintdocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/config/blueprintdocs.php -------------------------------------------------------------------------------- /example.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/example.apib -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/package.json -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/blueprintdocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/css/blueprintdocs.css -------------------------------------------------------------------------------- /public/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/css/vendor.css -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/blueprintdocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/js/blueprintdocs.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/blueprintdocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/js/blueprintdocs.js -------------------------------------------------------------------------------- /resources/assets/sass/_highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/sass/_highlight.scss -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/assets/sass/blueprintdocs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/assets/sass/blueprintdocs.scss -------------------------------------------------------------------------------- /resources/views/action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/action.blade.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/parameters.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/parameters.blade.php -------------------------------------------------------------------------------- /resources/views/requestresponsebody.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/requestresponsebody.blade.php -------------------------------------------------------------------------------- /resources/views/resource.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/resource.blade.php -------------------------------------------------------------------------------- /resources/views/resource_group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/resources/views/resource_group.blade.php -------------------------------------------------------------------------------- /src/BlueprintDocs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/BlueprintDocs.php -------------------------------------------------------------------------------- /src/BlueprintDocsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/BlueprintDocsController.php -------------------------------------------------------------------------------- /src/BlueprintDocsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/BlueprintDocsServiceProvider.php -------------------------------------------------------------------------------- /src/DescriptionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/DescriptionParser.php -------------------------------------------------------------------------------- /src/Elements/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Action.php -------------------------------------------------------------------------------- /src/Elements/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Api.php -------------------------------------------------------------------------------- /src/Elements/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Asset.php -------------------------------------------------------------------------------- /src/Elements/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Base.php -------------------------------------------------------------------------------- /src/Elements/HrefVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/HrefVariable.php -------------------------------------------------------------------------------- /src/Elements/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/HttpRequest.php -------------------------------------------------------------------------------- /src/Elements/HttpResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/HttpResponse.php -------------------------------------------------------------------------------- /src/Elements/Mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Mapping.php -------------------------------------------------------------------------------- /src/Elements/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/Resource.php -------------------------------------------------------------------------------- /src/Elements/ResourceGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/Elements/ResourceGroup.php -------------------------------------------------------------------------------- /src/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/src/routes.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M165437/laravel-blueprint-docs/HEAD/webpack.mix.js --------------------------------------------------------------------------------