Laravel 10 Push Notification to Android and IOS Tutorial

[ad_1]

Laravel 10 send push notification tutorial. In this tutorial, we will show you how to send push notification to android and ios mobiles in Laravel 10 app. And How to Send Push Notifications in Laravel 10 using Firebase.

Sending push notifications to mobile devices are very easy things with laravel. You can use send push notification in android and ios device without using any laravel package.

This tutorial will guide you on how to send push notification in laravel with google FCM using CURL request and helper.

This tutorial uses CURL request for calling fcm api to send push notification on mobile devices, and custom helper, where you can define a send notification function. And last google FCM key.

Prerequisite

If you want to send push notification in laravel app without using package. So you need to one thing only that is google FCM.

Send Push Notification on Android and IOS using Google Firebase FCM in Laravel 10 Apps

Step 1: Create a Helper File

First of all, Navigate to App directory and inside this directory create a new file new helpers.php.

You can check checkout this => how to create helpers in Laravel 10

Then update the following code into your helpers.php file as follow:

app/helpers.php

<?php
 
  function send_notification_FCM($notification_id, $title, $message, $id,$type) {

    $accesstoken = env('FCM_KEY');

    $URL = 'https://fcm.googleapis.com/fcm/send';


        $post_data = '{
            "to" : "' . $notification_id . '",
            "data" : {
              "body" : "",
              "title" : "' . $title . '",
              "type" : "' . $type . '",
              "id" : "' . $id . '",
              "message" : "' . $message . '",
            },
            "notification" : {
                 "body" : "' . $message . '",
                 "title" : "' . $title . '",
                  "type" : "' . $type . '",
                 "id" : "' . $id . '",
                 "message" : "' . $message . '",
                "icon" : "new",
                "sound" : "default"
                },

          }';
        // print_r($post_data);die;

    $crl = curl_init();

    $headr = array();
    $headr[] = 'Content-type: application/json';
    $headr[] = 'Authorization: ' . $accesstoken;
    curl_setopt($crl, CURLOPT_SSL_VERIFYPEER, false);

    curl_setopt($crl, CURLOPT_URL, $URL);
    curl_setopt($crl, CURLOPT_HTTPHEADER, $headr);

    curl_setopt($crl, CURLOPT_POST, true);
    curl_setopt($crl, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($crl, CURLOPT_RETURNTRANSFER, true);

    $rest = curl_exec($crl);

    if ($rest === false) {
        // throw new Exception('Curl error: ' . curl_error($crl));
        //print_r('Curl error: ' . curl_error($crl));
        $result_noti = 0;
    } else {

        $result_noti = 1;
    }

    //curl_close($crl);
    //print_r($result_noti);die;
    return $result_noti;
}

Step 2: Add Fcm Key in .env

Go to your project root directory and open .env file. Then update fcm key as follow:

Now, you can use your google fcm key as follow

$accesstoken = env('FCM_KEY');

Step 3: Send Notification

Next step, open your controller file and you can call send_notification_FCM($notification_id, $title, $message, $id,$type) from helpers.php with following parameters.

public function notifyUser(Request $request){

   $user = User::where('id', $request->id)->first();

   $notification_id = $user->notification_id;
   $title = "Greeting Notification";
   $message = "Have good day!";
   $id = $user->id;
   $type = "basic";

   $res = send_notification_FCM($notification_id, $title, $message, $id,$type);

   if($res == 1){

      // success code

   }else{

     // fail code
   }
   

}

send_notification_FCM() with following parameter $notification_id, $title, $message, $id,$type. When you want to send push notification to the mobile device, that time you need to call the send_notification_FCM() with specified parameters.

Conclusion

In send push notification in laravel tutorial, you have learned how to send push notification fcm using CURL and helper without using package in laravel.

Recommended Laravel Posts

[ad_2]

Jaspreet Singh Ghuman

Jaspreet Singh Ghuman

Jassweb.com/

Passionate Professional Blogger, Freelancer, WordPress Enthusiast, Digital Marketer, Web Developer, Server Operator, Networking Expert. Empowering online presence with diverse skills.

jassweb logo

Jassweb always keeps its services up-to-date with the latest trends in the market, providing its customers all over the world with high-end and easily extensible internet, intranet, and extranet products.

GSTIN is 03EGRPS4248R1ZD.

Contact
Jassweb, Rai Chak, Punjab, India. 143518
Item added to cart.
0 items - 0.00