We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86b6f4 commit 192a08cCopy full SHA for 192a08c
src/Http/Requests/FormRequest.php
@@ -14,8 +14,8 @@ public function rules()
14
'title.*' => 'nullable|max:255',
15
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
16
'status.*' => 'boolean',
17
- 'summary.*' => 'nullable',
18
- 'body.*' => 'nullable',
+ 'summary.*' => 'nullable|max:1000',
+ 'body.*' => 'nullable|max:10000',
19
];
20
}
21
0 commit comments