Sergiu177 years agoLevel 60ReplyReport SpamHi, https://laravel.com/docs/5.7/validation#rule-dimensions Like Reply
AddWebContribution7 years agoLevel 42ReplyReport SpamYou should try this: // ImageController public function postImage(Request $request) { $this->validate($request, [ 'avatar' => 'dimensions:min_width=250,min_height=500' ]); // or... $this->validate($request, [ 'avatar' => 'dimensions:min_width=500,max_width=1500' ]); // or... $this->validate($request, [ 'avatar' => 'dimensions:width=100,height=100' ]); // or... // Ensures that the width of the image is 1.5x the height $this->validate($request, [ 'avatar' => 'dimensions:ratio=3/2' ]); } Like Reply