Laravel package for upload image with auto generated multiple sizes
Require this package with composer.
composer require mark-villudo/image-upload
//Get file and declare path to store image
$file = $request->file('file');
$origFilePath = '/storage/categories';
//use helper to store images with multiple sizes
storeImages($file, $origFilePath);
//Get file and declare path to store image
$file = $request->file('file');
$origFilePath = '/storage/categories';
//use helper to store single image
storeSingleImage($file, $origFilePath);
Master Jes Dolfo.
Facebook Profile
<https://www.facebook.com/jesdolfo>
The MIT License (MIT). Please see License File for more information.