how to up resolution of image with laravel code example
Example 1: how get the Photo size upload in laravel
$request->file('image')->getSize()
Example 2: how get the size of image in laravel
$image = getimagesize($request->image);
$width = $image[0];
$height = $image[1];