I am running Laravel 5.3 and trying to do some image manipulation. I get this error: GD Library extension not available with this PHP installation.
I\'ve tried putting g
Add "gd": "*" to composer.json and perform composer update
"gd": "*"
composer update
If that doesn't work add "ext-gd":" *" and do a composer update
"ext-gd":" *"