Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenky/laravel-push-notification
Laravel Push Notification
https://github.com/jenky/laravel-push-notification
Last synced: 4 days ago
JSON representation
Laravel Push Notification
- Host: GitHub
- URL: https://github.com/jenky/laravel-push-notification
- Owner: jenky
- License: mit
- Created: 2016-08-19T09:32:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-26T15:37:51.000Z (almost 8 years ago)
- Last Synced: 2024-11-25T11:43:48.378Z (about 1 month ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel 5 Push Notification
######Laravel package for sending push notification.
## Installation
Require this package with composer:```
composer require jenky/laravel-push-notification
```or add this to `composer.json`
```
"jenky/laravel-push-notification": "^1.0"
```After updating composer, add the ServiceProvider to the providers array in `config/app.php`
```php
Jenky\LaravelPushNotification\PushNotificationServiceProvider::class,
```Add this to your facades in `config/app.php` (optional):
```php
'PushNotification' => Jenky\LaravelPushNotification\Facades\PushNotification::class,
```Copy the package config to your local config with the publish command:
```
php artisan vendor:publish
```
or
```
php artisan vendor:publish --provider="Jenky\LaravelPushNotification\PushNotificationServiceProvider"
```## Usage
WIP