image source not readable
PHP Snippet 1:
$destinationPath = public_path('storage/{$imagePath}');
$img = Image::make($image->path());
$img->resize(100, 100, function ($constraint) {
$constraint->aspectRatio();
})->save($destinationPath.'/'.$input['imagename']);