PHP code example of chipolo / laravel-push-notifications
1. Go to this page and download the library: Download chipolo/laravel-push-notifications 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');
/* Start to develop here. Best regards https://php-download.com/ */
chipolo / laravel-push-notifications example snippets
use Overthink\Push\Contracts\DeviceContract;
class Device implements DeviceContract
{
public function getOperatingSystem(): string
{
return 'android'; // or 'ios'
}
public function getPushToken(): string
{
// Push token should be provided by mobile application
return '8516cdd38e63170237df6e7eb6f22d875a5e07c10082...';
}
public function isDevelopment(): bool
{
// With this value you can set development or production api when sending iOS push
return false;
}
public function getTopic(): string
{
// Mobile applications unique identifier used when sending iOS push
return 'com.example.test'
}
}
$androidExamplePush = [
'message' => [
'android' => [
'priority' => 'normal',
'data' => [
'title' => 'Example Android title',
'body' => 'Example Android body',
'extra_data' => 'Some extra data that you want to pass to mobile app'
],
],
],
];
$iosExamplePush = [
'aps' => [
'sound' => 'short_sound.caf', // sound file needs to present in the app
'alert' => [
'title' => 'Example iOS title',
'body' => 'Example iOS body'
],
],
'extra_data' => 'Some extra data that you want to pass to mobile app'
];
$pushPayload = (new PushPayload())
->setAndroidPayload($androidExamplePush)
->setIosPayload($iosExamplePush);
// We need collection of objects that implement Overthink\Push\Contracts\DeviceContract
$devices = collect([new Device()]);
$push = (new Overthink\Push\Push())
->setPushPayload($pushPayload)
->setDevices($devices)
->send();