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.