mschwarzmueller / laravel-basics-youtube

Code for the Laravel YouTube series
MIT License
135 stars 105 forks source link

bypass maximum char. when editing the post #8

Open momenbasel opened 7 years ago

momenbasel commented 7 years ago

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' ]);