https://github.com/jenky/laravel-push-notification
Laravel Push Notification
https://github.com/jenky/laravel-push-notification
Last synced: 3 months 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-26T15:37:51.000Z (over 8 years ago)
- Last Synced: 2025-04-09T22:06:53.194Z (3 months ago)
- Language: PHP
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- 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