It's a file uploader and manager with below features:
- Upload any file type in single or batch mode
- Store external files
- HLS support
- Collect file's details automatically
- Classification for uploaded files
- Optimization for images and videos
- Export images in different resolution
for more information see documentation.
Install the package via composer
composer require hans-thomas/alicia
Then, publish config file using
php artisan vendor:publish --tag alicia-config
In the end, use AliciaHandler
trait on your model.
use Hans\Alicia\Traits\AliciaHandler;
use Illuminate\Database\Eloquent\Model;
class Post extends Model {
use AliciaHandler;
// ...
}
- Fork it!
- Create your feature branch: git checkout -b my-new-feature
- Commit your changes: git commit -am 'Add some feature'
- Push to the branch: git push origin my-new-feature
- Submit a pull request ❤️