lavalite/calendar

This package is abandoned and no longer maintained. The author suggests using the litepie/calendar package instead.

Calendar package for lavalite.

Installs: 7 211

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 3

Open Issues: 0

Language:HTML

v4.2.0 2016-07-24 15:21 UTC

This package is not auto-updated.

Last update: 2018-03-20 16:16:08 UTC


README

This is a Lavalite package that provides calendar management facility for lavalite framework.

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require lavalite/calendar.

"lavalite/calendar": "dev-master"

Next, update Composer from the Terminal:

composer update

Once this operation completes execute below cammnds in command line to finalize installation.

Lavalite\Calendar\Providers\CalendarServiceProvider::class,

And also add it to alias

'Calendar'  => Lavalite\Calendar\Facades\Calendar::class,

Use the below commands for publishing

Migration and seeds

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="migrations"

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="seeds"

Configuration

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="config"

Language files

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="lang"

View files

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="views"

Public folders

php artisan vendor:publish --provider="Lavalite\Calendar\Providers\CalendarServiceProvider" --tag="public"

Usage