| Package Data | |
|---|---|
| Maintainer Username: | turbo124 | 
| Maintainer Contact: | turbo124@gmail.com (David Bomba) | 
| Package Create Date: | 2017-01-08 | 
| Package Last Update: | 2017-01-08 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-30 03:05:57 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 8 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 0 | 
| Total Watchers: | 1 | 
| Total Forks: | 1 | 
| Total Open Issues: | 0 | 
######Laravel package for sending push notification.
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
Jenky\LaravelPushNotification\PushNotificationServiceProvider::class,
Add this to your facades in config/app.php (optional):
'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"
WIP