Download the PHP package kakhura/laravel-galleriable without Composer
On this page you can find all versions of the php package kakhura/laravel-galleriable. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kakhura/laravel-galleriable
More information about kakhura/laravel-galleriable
Files in kakhura/laravel-galleriable
Package laravel-galleriable
Short Description This package is for create galleriable modules
License MIT
Homepage https://github.com/kakhura/laravel-galleriable
Informations about the package laravel-galleriable
kakhura/laravel-galleriable
This package is for create modules, which has media gallery.
Docs
- Installation
- Configuration (Config based management)
- Migrations
Installation
Add the package in your composer.json by executing the command.
For Laravel versions before 5.5 or if not using auto-discovery, register the service provider in config/app.php
Configuration
If you want to change default configuration, you must publish default configuration file to your project by running this command in console:
This command will copy file [/vendor/kakhura/laravel-galleriable/config/kakhura.galleriable.php]
to [/config/kakhura.galleriable.php]
Default kakhura.galleriable.php
looks like:
This command will copy file [/vendor/kakhura/laravel-galleriable/resources/views]
to [/resources/views/vendor/admin/galleriable]
Migrations
After publish Configuration, you must publish migrations, by running this command in console:
This command will copy file [/vendor/kakhura/laravel-galleriable/database/migrations]
to [/database/migrations]
After publish Migrations, you must add HasGallery
trait in your model which you want to has gallery:
You must sync Gallery
in all your model create functionality like this:
use Models\Post;
class PostService extends Service
{
public fucntion create(array $data)
{
...
$post = Post::create($data);
$images = [];
foreach (Arr::get($data, 'images') as $key => $image) {
$file = Helper::uploadFile($data, $fileType);
$images[] = [
'image_id' => $file->id,
'sort_index' => $key,
];
}
$post->syncGallery($images);
...
}
}
Enjoy.