Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/test.tradze.com/vendor/edujugon/push-notification/ |
# ChangeLog
## v2.1
Laravel Facade Usage integrated into the package.
Now if you wanna get the Push Feedback after sending a notification you can chain the method getFeedback after send method.
## v2.0
Now you can create the object with the push service provider only typing the name
$push = new PushNotification('apn');
Addition of a new Push service provider : FCM
$push = new PushNotification('fcm');
As previous versions, if you instance the class without argument. it will set GCM as default Push service provider
$push = new PushNotification();
## v1.0
Usage
$push = new PushNotification;
or for APN
$push = new PushNotification(new \Edujugon\PushNotification\Apn());