Mezatsong / laravel-swagger-docs

MIT License
20 stars 8 forks source link

Nested array validation not working #6

Closed Mezatsong closed 1 year ago

Mezatsong commented 1 year ago

image

image

image

Mezatsong commented 1 year ago

Fixed with this PR #8

jtepe-sedna commented 1 month ago

@Mezatsong I'm still experiencing this issue on V1.6.1

'lines' => 'required|array|min:1',
'lines.*.code_id' => 'required|integer|exists:codes,id',
'lines.*.user_id' => 'required|integer|exists:users,id',
'lines.*.description' => 'string|max:255',