laravel_notify_fcm 0.0.1 copy "laravel_notify_fcm: ^0.0.1" to clipboard
laravel_notify_fcm: ^0.0.1 copied to clipboard

Laravel Notify for Firebase Cloud Messaging (FCM) - Send push notifications to your Flutter app from Laravel.

Laravel Notify Fcm #

Latest Release Version Latest Stable Version GitHub stars

Laravel Notify Fcm if package for sending notifications to your Flutter app using Laravel FCM.

Getting started #

Installation #

Add the following to your pubspec.yaml file:

dependencies:
  laravel_notify_fcm: ^0.0.1

or with Dart:

dart pub add laravel_notify_fcm

Requirements #

Installation #

First, install the package via composer:

composer require nylo-core/laravel-fcm-channel

The package will automatically register itself.

Configuration #

Run the install command.

php artisan laravelfcm:install

This will add a (laravelfcm.php) config file

ServiceProvider to your app.php: App\Providers\FcmAppServiceProvider::class

Then, ask if you want to run the migrations.

Here's the tables it will migrate:

  • fcm_devices

Add your Google Service Account to firebase_service_account_json.

<?php

return '{
    "type": "service_account",
    "project_id": "123456789-me908",
    "private_key_id": "123456789",
    "private_key": "-----BEGIN PRIVATE KEY-----\123456789\n-----END PRIVATE KEY-----\n",
    "client_email": "firebase-adminsdk-9p9z7@123456789-me908.iam.gserviceaccount.com",
    "client_id": "123456789",
    "auth_uri": "https://accounts.google.com/o/oauth2/auth",
    "token_uri": "https://oauth2.googleapis.com/token",
    "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
    "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-9p9z7%123456789-me908.iam.gserviceaccount.com",
    "universe_domain": "googleapis.com"
  }';

You can download your Google Service Account in your Firebase Project Settings > Service Accounts > Manage service account permissions > "Actions (three dots) - Manage keys" > Add Key > Create New Key.

Then, paste the JSON into the firebase_service_account_json file like in the above example.

Note: It's best to keep the key values in a .env file. Don't commit the JSON file to your repository.

You can fully configure this package in the config/laravelfcm.php file (this file should be added after you run php artisan laravelfcm:install).

Usage #

import 'package:laravel_notify_fcm/laravel_notify_fcm.dart';

Adding a device to the database #

First, call init to initialize the package.

Parameters:

  • url - The URL to your Laravel app where the package will send the device token.
  • firebaseMessaging - The FirebaseMessaging instance.
  • debugMode - Whether to enable debug mode. Default is false.
FirebaseMessaging firebaseMessaging = FirebaseMessaging();

await LaravelNotifyFcm.instance.init(
  url: 'https://example.com/api/fcm/devices',
  firebaseMessaging: firebaseMessaging,
);

Then, call storeFcmDevice to add the device to the database.


await LaravelNotifyFcm.instance.storeFcmDevice(
  sanctumToken: 'from your laravel user',
);

This method will request permission to send notifications to the device. If the user accepts, the device will be added to the database.

Try the example app to see how it works.

Changelog #

Please see CHANGELOG for more information what has changed recently.

Social #

Licence #

The MIT License (MIT). Please view the License File for more information.

2
likes
0
pub points
27%
popularity

Publisher

unverified uploader

Laravel Notify for Firebase Cloud Messaging (FCM) - Send push notifications to your Flutter app from Laravel.

Homepage
Repository (GitHub)
View/report issues

Topics

#laravel-fcm #push-notifications #laravel-push-notifications #fcm

Funding

Consider supporting this project:

github.com

License

unknown (license)

Dependencies

device_meta, dio, firebase_messaging, flutter, nylo_support, pretty_dio_logger

More

Packages that depend on laravel_notify_fcm