0

I want to change the size of an image i am uploading. I am using the built-in file system and i am storing it in the storage folder, and it is working great. but how can i manipulate its size? the upload is like this:

$request->file('image')->store('images');

I know there is the Intervention-Image library but is there another way? Thanks.

GabMic
  • 1,422
  • 1
  • 20
  • 37

1 Answers1

0

There is no built-in feature to resize images in Laravel. I advise you to use Intervention, it's really easy to use.

Farouk M
  • 1,185
  • 7
  • 17