taggers/events

Taggers CMS events module

1.1 2017-03-21 19:09 UTC

This package is auto-updated.

Last update: 2024-04-29 03:53:25 UTC


README

Installation

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

composer require taggers/events

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

'providers' => [
    // ...
    Taggers\Events\EventsServiceProvider::class,
];

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

php artisan vendor:publish
php artisan migrate