libressltd/lbusermanual

Push notification center

Installs: 28

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/libressltd/lbusermanual

0.3.3.2 2017-02-23 03:24 UTC

This package is not auto-updated.

Last update: 2025-09-28 01:44:09 UTC


README

Step 1: Install DeepPermission

composer require libressltd/lbpushcenter

Step 2: Add service provider to config/app.php

LIBRESSLtd\LBPushCenter\LBPushCenterServiceProvider::class,

and alias

'LBPushCenter' => LIBRESSLtd\LBPushCenter\Controllers\LBPushCenter::class,

Step 3: Publish vendor

php artisan vendor:publish --tag=lbpushcenter --force

Step 3: Using in master:

use LBPushCenter;

LBPushCenter::push(array(
	array("type" => "appNameIOS", "token" => "a-device-token"),
	array("type" => "appNameAndroid", "token" => "a-device-token"),
), "Message to push")