taggers/gallery

Taggers CMS gallery module

1.1 2018-07-27 10:52 UTC

This package is auto-updated.

Last update: 2025-04-26 04:22:54 UTC


README

Installation

First, you'll need to install the package via Composer:

composer require taggers/gallery

Then, update config/app.php by adding an entry for the service provider.

'providers' => [
    // ...
    Taggers\Gallery\GalleryServiceProvider::class,
];

Finally, from the command line again, publish the migrations:

php artisan vendor:publish
php artisan migrate