Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wqqas1/calendar


https://github.com/wqqas1/calendar

Last synced: 27 days ago
JSON representation

Awesome Lists containing this project

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.

```php
Litepie\Calendar\Providers\CalendarServiceProvider::class,

```

And also add it to alias

```php
'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