turbo124/firebase-apns-notification is a Laravel package for laravel push notification.
It currently has 0 GitHub stars and 8 downloads on Packagist.
Install it with composer require turbo124/firebase-apns-notification.
Discover more Laravel packages by turbo124
or browse all Laravel packages to compare alternatives.
Last updated
######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