ahmedtaha/laravel-file-uploader is a Laravel package for a php class which simplifies file uploading.
It currently has 0 GitHub stars and 11 downloads on Packagist.
Install it with composer require ahmedtaha/laravel-file-uploader.
Discover more Laravel packages by ahmedtaha
or browse all Laravel packages to compare alternatives.
Last updated
You can install the package via Composer.
composer require ahmedtaha/laravel-file-uploader
use Ahmedtaha\FileUploader\Services\Concrete\FileUploader;
// path example : 'storage/images/users'
// width and height are optional
$filename = FileUploader::getInstance()
->setParams($file,$path,$width,$height)
->upload();
#Follow me