Package Data | |
---|---|
Maintainer Username: | stayallive |
Maintainer Contact: | me@alexbouma.me (Alex Bouma) |
Package Create Date: | 2016-02-29 |
Package Last Update: | 2024-11-19 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:14:54 |
Package Statistics | |
---|---|
Total Downloads: | 25,023 |
Monthly Downloads: | 255 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 1 |
A media library package making it easy to implement your own WordPress style media picker component.
This package depends on intervention/image
.
Add the service providers to your providers array in app.php
.
CipeMotion\Medialibrary\ServiceProvider::class,
Intervention\Image\ImageServiceProvider::class
Optional: Add the intervention/image
Facade to the aliases array in app.php
.
'Image' => Intervention\Image\Facades\Image::class,
Publish the config file:
php artisan vendor:publish --provider="CipeMotion\Medialibrary\ServiceProvider" --tag="config"
Read through the config file and change what is needed.
Publish the migrations file:
php artisan vendor:publish --provider="CipeMotion\Medialibrary\ServiceProvider" --tag="migrations"
Run the migrations:
php artisan migrate
On your owner model add:
public function files()
{
return $this->hasMany(\CipeMotion\Medialibrary\Entities\File::class, 'owner_id');
}
On your models add:
public function attachebles()
{
return $this->morphToMany(\CipeMotion\Medialibrary\Entities\File::class, 'attachable', 'medialibrary_attachable');
}