scribe icon indicating copy to clipboard operation
scribe copied to clipboard

Generate API documentation for humans from your Laravel codebase.✍

Results 171 scribe issues
Sort by recently updated
recently updated
newest added

- [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...

bug

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...

question

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: ```...

bug

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...

enhancement

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...

question

- [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...

enhancement

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...

enhancement

- [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...

bug

- [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...

bug