PHP code example of benwilkins / laravel-fcm-notification
1. Go to this page and download the library: Download benwilkins/laravel-fcm-notification library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
benwilkins / laravel-fcm-notification example snippets
'providers' => [
...
Benwilkins\FCM\FcmNotificationServiceProvider::class,
...
];
return [
...
...
'fcm' => [
'key' => env('FCM_SECRET_KEY' )
]
];
public function via ($notifiable)
{
return ['fcm' ];
}
use Benwilkins \FCM \FcmMessage ;
...
public function toFcm ($notifiable)
{
$message = new FcmMessage();
$message->content([
'title' => 'Foo' ,
'body' => 'Bar' ,
'sound' => '' ,
'icon' => '' ,
'click_action' => ''
])->data([
'param1' => 'baz'
])->priority(FcmMessage::PRIORITY_HIGH);
return $message;
}
public function routeNotificationForFcm ($notification)
{
return $this ->device_token;
}
use Benwilkins \FCM \FcmMessage ;
...
public function toFcm ($notifiable)
{
$message = new FcmMessage();
$message->to('the-topic' , $recipientIsTopic = true )
->content([...])
->data([...]);
return $message;
}
use Benwilkins \FCM \FcmMessage ;
...
public function toFcm ($notifiable)
{
$message = new FcmMessage();
$message->contentAvailable(true )
->priority('high' )
->condition("'user_" .$notifiable->id."' in topics" )
->data([...]);
return $message;
}
use Benwilkins \FCM \FcmMessage ;
...
public function toFcm ($notifiable)
{
$message = new FcmMessage();
$message->setHeaders([
'project_id' => "48542497347"
])->content([
'title' => 'Foo' ,
'body' => 'Bar' ,
'sound' => '' ,
'icon' => '' ,
'click_action' => ''
])->data([
'param1' => 'baz'
])->priority(FcmMessage::PRIORITY_HIGH);
return $message;
}
bash
php artisan make:notification SomeNotification