Skip to content

Commit 192a08c

Browse files
committed
Update FormRequest.php
1 parent c86b6f4 commit 192a08c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/Requests/FormRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ public function rules()
1414
'title.*' => 'nullable|max:255',
1515
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
1616
'status.*' => 'boolean',
17-
'summary.*' => 'nullable',
18-
'body.*' => 'nullable',
17+
'summary.*' => 'nullable|max:1000',
18+
'body.*' => 'nullable|max:10000',
1919
];
2020
}
2121
}

0 commit comments

Comments
 (0)