Chronos Events is a package for Laravel 5 that provides scaffolding and functionality for working with calendar events in a CMS-like nature.
From the command line, run:
$ composer require weerd/chronos-events
This package has support for Laravel's package auto-discovery, so after installing with composer the package's service provider will automagically ✨ be registered and enabled.
However, if your project has package auto-discovery disabled, or you prefer to add the service provider manually, within your Laravel project, open config/app.php
and, at the end of the providers
array, append:
'providers' => [
// ...
/*
* Package Service Providers...
*/
Weerd\ChronosEvents\ChronosEventsServiceProvider::class,
],
Next, run the migration to add the calendar_events
table to your database:
$ php artisan migrate
more to come...