scribe
scribe copied to clipboard
Generate API documentation for humans from your Laravel codebase.✍
- [x] **I confirm that I have read and attempted the tips in the [Troubleshooting Guide](https://scribe.knuckles.wtf/laravel/troubleshooting).** **What happened?** I'm using the latest version of Scribe and when scrolling through the...
I want to use my form requests to implement examples & descriptions for my documentation. I think the architecture of my form requests doesn't work with Scribe. My API controllers...
Add configuration item:language Support multi language conversion to ASCII when generating documents
Hello. What about BodyParam attribute in FormRequest? This works: ``` /** * @bodyParam phone string .... */ class CodeRequest extends FormRequest { // ... } ``` This does not: ```...
In Jsonapi we can have query parameters that look like `filter[createdAt][lt]=2022-10-12` with ```php $rules = [ 'filter' => ['array'], 'filter.createdAt' => ['array:lt,lte,gt,gte,bt'], 'filter.createdAt.*' => ['date_format:Y-m-d'] ]; ``` the following lines...
Hi all! I'm using Scribe to make the documentation for an API made with Laravel 9. In this project there are two types of Users (simple users and companies) and...
- [x] **I confirm that I have read and attempted the tips in the [Troubleshooting Guide](https://scribe.knuckles.wtf/laravel/troubleshooting).** **What happened?** Hello I use FormRequests for validation. The package generally works fine. But...
scribe can not auto generate suitable doc for request validation enum: my validation: 'bannerDetail.type' => [ 'required', new Enum(BannerDetailType::class), ], generated doc: bannerDetail.type string Example: quidem And it force me...
- [x] **I confirm that I have read and attempted the tips in the [Troubleshooting Guide](https://scribe.knuckles.wtf/laravel/troubleshooting).** **What happened?** 1. I set my configuration to default Scribe config. 2. Then I...
- [x] **I confirm that I have read and attempted the tips in the [Troubleshooting Guide](https://scribe.knuckles.wtf/laravel/troubleshooting).** when adding nested array it fails in generating the docs and gives the error...