mschwarzmueller / laravel-basics-youtube

Code for the Laravel YouTube series

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bypass maximum char. when editing the post

momenbasel opened this issue · comments

you forgot to add assign the maximum value for the post, while validating it

just edit it to:
$this->validate($req, [
'body' => 'required|max:1000'
]);