mark-villudo/image-upload is a Laravel package for laravel package api for image-upload.
It currently has 1 GitHub stars and 253 downloads on Packagist.
Install it with composer require mark-villudo/image-upload.
Discover more Laravel packages by mark-villudo
or browse all Laravel packages to compare alternatives.
Last updated
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.