Package Data | |
---|---|
Maintainer Username: | miladimos |
Maintainer Contact: | miladimos@outlook.com (miladimos) |
Package Create Date: | 2020-11-22 |
Package Last Update: | 2023-06-30 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-09 15:07:01 |
Package Statistics | |
---|---|
Total Downloads: | 115 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 12 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 0 |
composer require miladimos/laravel-filemanager
Miladimos\FileManager\Providers\FileManagerServiceProvider::class
php artisan filemanager:install
Go to the file
config/file_uploads.php;
There you have an ability to set:
برای اپلود فایل:
public function store(Request $request)
{
// This will upload your file to the default folder of selected in config storage
UploadService::uploadFile($request->file('some_file'));
// This will upload your file to the given as second parameter path of default storage
UploadService::uploadFile($request->file('some_file'), 'path/to/upload');
// This will upload your file to the given storage
UploadService::uploadFile($request->file('some_file'), 'path/to/upload', 'storage_name');
// This will also resize image to the given width and height
UploadService::uploadFile($request->file('some_file'), 'path/to/upload', 'storage_name');
}
برای آپلود عکس با فرمت base64:
public function store(Request $request)
{
// This will upload your file to the default folder of selected in config storage
UploadService::uploadBase64Image($request->input('image'));
// This will upload your file to the given as second parameter path of default storage
UploadService::uploadFile($request->input('image'), 'path/to/upload');
// This will upload your file to the given storage
UploadService::uploadFile($request->input('image'), 'path/to/upload', 'storage_name');
// This will also resize image to the given width and height
UploadService::uploadFile($request->input('image'), 'path/to/upload', 'storage_name');
}
❤️