Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wqqas1/calendar
https://github.com/wqqas1/calendar
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wqqas1/calendar
- Owner: wqqas1
- License: mit
- Created: 2018-04-04T11:40:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-23T11:48:46.000Z (almost 7 years ago)
- Last Synced: 2024-11-05T13:24:08.683Z (2 months ago)
- Language: HTML
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
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