litepie/calendar

Calendar package for Lavalite

Installs: 10 027

Dependents: 0

Suggesters: 0

Security: 0

Stars: 13

Watchers: 3

Forks: 1

Open Issues: 1

Language:HTML

3.0.1 2018-10-04 08:19 UTC

This package is auto-updated.

Last update: 2023-09-11 02:05:11 UTC


README

This is a Litepie 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 litepie/calendar.

"litepie/calendar": "dev-master"

Next, update Composer from the Terminal:

composer update

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

Litepie\Calendar\Providers\CalendarServiceProvider::class,

And also add it to alias

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

Use the below commands for publishing

Migration and seeds

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

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

Configuration

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

Language files

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

View files

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

Public folders

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

Usage