Answers for "how to validate size of image in laravel using validation"

PHP
7

laravel image validation

'image' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048',
Posted by: Guest on May-30-2020
0

laravel image ratio validation

// 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'
  ]);
}
Posted by: Guest on March-01-2021

Code answers related to "how to validate size of image in laravel using validation"

Browse Popular Code Answers by Language