taggers/events

Taggers CMS events module

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/taggers/events

1.1 2017-03-21 19:09 UTC

This package is auto-updated.

Last update: 2025-09-29 02:42:03 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