sergeymiracle/eloquent-uploadable
A trait to automatically handle file uploads for Laravel models.
423
3
| Install | |
|---|---|
composer require sergeymiracle/eloquent-uploadable |
|
| Latest Version: | 4.0.1 |
| PHP: | >=7.2 |
| License: | MIT |
| Last Updated: | Feb 6, 2023 |
| Links: | GitHub · Packagist |
Maintainer: SergeyMiracle
Eloquent Uploadable
A trait to automatically handle file uploads for Laravel Eloquent models.
Installation
composer require sergeymiracle/eloquent-uploadable
Example Usage
use SergeyMiracle\Uploadable\UploadableModelTrait;
use Illuminate\Database\Eloquent\Model;
class Post extends Model {
use UploadableModelTrait;
// define options function
public function getUploadableOptions(): array
{
return [
'attributes' => [ // model attributes which you'd like to be automatically handled by the trait.
'featured_image',
'featured_file'
],
'directory' => 'my_dir', // destination directory, optional
'disk' => 'my_disk' // flysystem disk, optional, if not present in return array disk from config file used
];
}
}
On saving array of files, a json encoded string saved in database.
Changelog
- 3.1.0 - added new config options for filename generation
- 3.0.0 - remove options - uploadables, use function getUploadableOptions() instead
- 2.0.0 - removed UtilsTrait.php and UploadableControllerTrait.php, UploadableFileHandler can be used instead, php 7.2