Download the PHP package i-ismail/laravel-file-upload without Composer
On this page you can find all versions of the php package i-ismail/laravel-file-upload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-file-upload
File Upload Service
Description
Laravel file upload is a package that allows to you upload a single file or multiple files with auto-optimization, resizing, uses a smart combination of the best optimization and lossy compression algorithms to shrink images to the minimum possible size while keeping the required level of quality.
Installation
Publish Config File
Packages dependency
1- FileUploadService class
This class store file and return file name to store it in your model.
- it provide all methods in intervention image package.
- it provide auto-optimization and resizing.
Here are a few short examples of what you can do:
You can add folder path.
You can add disk, by default disk is public.
You can add custom file name.
You can add custom extension, By default, we will set this value to "webp" for images.
You can use all methods in intervention image package.
You can delete file
You can use delete old file, for example in update.
You can get path.
Note: you can clean code by Accessors & Mutators
To get image.
Dont forget run this command.
2- MediaUploadService class
This class use media-library package to store media files for your model.
- it provide all methods in intervention image package.
- it provide all methods in media-library package.
- it provide auto-optimization and resizing.
Preparing the database
You need to publish the migration to create the media table:
After that, you need to run migrations.
Publishing the config file
Publishing the config file is optional:
Preparing your model
Here are a few short examples of what you can do:
You can add collection.
You can add disk, by default disk is public.
You can use all methods in intervention image package before setModel method
You can use all methods in media library package after setModel method.
Retrieving media
This method returns a collection of Media-objects.
retrieving the first media and the URL for the first media.
Delete media
You can remove something from the library by simply calling delete on an instance of Media:
Delete Model
recommend: read Laravel-media library documentation.
All versions of laravel-file-upload with dependencies
laravel/framework Version ^10.48
illuminate/contracts Version ^10.3
nunomaduro/collision Version ^6.1
spatie/laravel-medialibrary Version ^10.0