laradevs / notifications-fcm
A package to send Firebase notification cross Laravel Application
Requires
- php: ^5.6|^7.0|^8.0|^8.1|^8.2
- ext-curl: *
- ext-json: *
- illuminate/support: ^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
Requires (Dev)
- orchestra/testbench: ^3.5|^4.0|^5.0|^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-03-09 14:16:45 UTC
README
Notifications FCM
this package is forked from kawnkoding/laravel-fcm and adjustments and unit tests have been done for your work with queues and additional parameters
Installation
You can pull the package via composer :
$ composer require laradevs/notifications-fcm
Next, You must register the service provider :
// config/app.php 'Providers' => [ // ... LaraDevs\Fcm\FcmServiceProvider::class, ]
If you want to make use of the facade you must install it as well :
// config/app.php 'aliases' => [ // ... 'Fcm' => LaraDevs\Fcm\FcmFacade::class, ];
Next, You must publish the config file to define your FCM server key :
php artisan vendor:publish --provider="LaraDevs\Fcm\FcmServiceProvider"
This is the contents of the published file :
return [ /** * Set your FCM Server Key * Change to yours */ 'server_key' => env('FCM_SERVER_KEY', ''), 'server_endpoint' => env('FCM_SERVER_ENDPOINT', 'https://fcm.googleapis.com/fcm/send'), 'server_icon_app'=> env('FCM_ICON_APP') ];
importScripts('https://www.gstatic.com/firebasejs/3.9.0/firebase-app.js'); importScripts('https://www.gstatic.com/firebasejs/3.9.0/firebase-messaging.js'); // Initialize Firebase var config = { apiKey: "YOUR-API-KEY", authDomain: "YOUR-DOMAIN", databaseURL: "YOUR-DATABASE-URL", projectId: "YOUR-PROJECT-ID", storageBucket: "YOUR-STORAGE-BUCKET", messagingSenderId: "YOUR-MESSAGING-SENDER", appId: "YOUR-APP-ID", measurementId: "YOUR-MEASURE-ID" }; firebase.initializeApp(config); const messaging = firebase.messaging();
Set your FCM Server Key in .env
file :
APP_NAME="Laravel"
# ...
FCM_SERVER_KEY=putYourKeyHere
FCM_SERVER_ENDPOINT=putServerEndpointHere
FCM_ICON_APP=putIconNotification
Usage with JOBS
If you want to use FCM in a simple way, do it through the following JOB
FcmSendJob::dispatch('Hello World',['RECIPIENTS_IDs']);
If you want to use FCM with queues, please do as follows
FcmSendJob::dispatch('Hello World',['RECIPIENTS_IDs'])->onqueue('NAME_QUEUE');
Usage without JOBS
If You want to send a FCM with just notification parameter, this is an example of usage sending a FCM with only data parameter :
fcm() ->to($recipients) // $recipients must an array ->priority('high') ->timeToLive(0) ->data([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', ]) ->send();
If You want to send a FCM to topic, use method toTopic($topic) instead to() :
fcm() ->toTopic($topic) // $topic must an string (topic name) ->priority('normal') ->timeToLive(0) ->notification([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', ]) ->send();
If You want to send a FCM with just notification parameter, this is an example of usage sending a FCM with only notification parameter :
fcm() ->to($recipients) // $recipients must an array ->priority('high') ->timeToLive(0) ->notification([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', ]) ->send();
If You want to send a FCM with both data & notification parameter, this is an example of usage sending a FCM with both data & notification parameter :
fcm() ->to($recipients) // $recipients must an array ->priority('normal') ->timeToLive(0) ->data([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', ]) ->notification([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', ]) ->send();
Customize the icon and action, doing the following :
fcm() ->to($recipients) // $recipients must an array ->priority('normal') ->timeToLive(0) ->data([ 'title' => 'LaradevTest', 'body' => 'This tests laraDevs', 'icon' => 'Your URL public to icon', 'click_action'=>'action click' ]) ->send();