A package for convenient way to upload files to the different storages
- Run the command below to add this package:
composer require miladimos/laravel-filemanager
- Open your config/app.php and add the following to the providers array:
Miladimos\FileManager\Providers\FileManagerServiceProvider::class
- Run the command below to install:
php artisan filemanager:install
Go to the file
config/file_uploads.php;
There you have an ability to set:
- default storage to upload file (default is: local)
- default image quality (default is: 100)
- default folder to put your uploads (default is: public/user-uploads)
To upload file:
public function store(Request $request)
{
// This will upload your file to the default folder of selected in config storage
Uploader::uploadFile($request->file('some_file'));
// This will upload your file to the given as second parameter path of default storage
Uploader::uploadFile($request->file('some_file'), 'path/to/upload');
// This will upload your file to the given storage
Uploader::uploadFile($request->file('some_file'), 'path/to/upload', 'storage_name');
// This will also resize image to the given width and height
Uploader::uploadFile($request->file('some_file'), 'path/to/upload', 'storage_name');
}
To upload base64 string of image:
public function store(Request $request)
{
// This will upload your file to the default folder of selected in config storage
Uploader::uploadBase64Image($request->input('image'));
// This will upload your file to the given as second parameter path of default storage
Uploader::uploadFile($request->input('image'), 'path/to/upload');
// This will upload your file to the given storage
Uploader::uploadFile($request->input('image'), 'path/to/upload', 'storage_name');
// This will also resize image to the given width and height
Uploader::uploadFile($request->input('image'), 'path/to/upload', 'storage_name');
}