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 a1c97cf commit ec4c4dfCopy full SHA for ec4c4df
src/Http/Requests/FormRequest.php
@@ -14,9 +14,9 @@ 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',
19
- 'address' => 'nullable',
+ 'summary.*' => 'nullable|max:1000',
+ 'body.*' => 'nullable|max:10000',
+ 'address' => 'nullable|max:1000',
20
'email' => 'nullable|email:rfc,dns|max:255',
21
'website' => 'nullable|url|max:255',
22
'phone' => 'nullable|max:255',
0 commit comments