laravel-swagger icon indicating copy to clipboard operation
laravel-swagger copied to clipboard

Auto generates the swagger documentation of a laravel project based on best practices and simple assumptions

Results 26 laravel-swagger issues
Sort by recently updated
recently updated
newest added

when we use [arrays validation](https://laravel.com/docs/6.x/validation#validating-arrays), in "Example Value" it will generate null value for that parameter.

when Form Request has a file value describe it using [multipart form](https://swagger.io/docs/specification/describing-request-body/file-upload/)

maybe add some new parameter for phpdoc in controller, that allow group [operations by tag](https://swagger.io/docs/specification/grouping-operations-with-tags/)

https://swagger.io/docs/specification/describing-parameters/

In my documentation what I created by hand I use `definitions` like this: ``` /api/login: post: tags: - login summary: login into the API description: | You need to log...