Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wqqas1/message
https://github.com/wqqas1/message
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wqqas1/message
- Owner: wqqas1
- License: mit
- Created: 2018-04-04T11:41:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-23T11:47:56.000Z (almost 7 years ago)
- Last Synced: 2024-11-05T13:24:05.462Z (about 2 months ago)
- Language: HTML
- Size: 34.2 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 Laravel 5 package that provides message management facility for lavalite framework.
## Installation
Begin by installing this package through Composer. Edit your project's `composer.json` file to require `lavalite/message`.
"lavalite/message": "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\Message\Providers\MessageServiceProvider::class,```
And also add it to alias
```php
'Message' => Litepie\Message\Facades\Message::class,
```Use the below commands for publishing
Migration and seeds
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="seeds"Configuration
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="config"
Language
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="lang"
Views public and admin
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="view-public"
php artisan vendor:publish --provider="Litepie\Message\Providers\MessageServiceProvider" --tag="view-admin"Publish admin views only if it is necessary.
## Usage