PHPackages                             rpsimao/laravel-pushbullet - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. rpsimao/laravel-pushbullet

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

rpsimao/laravel-pushbullet
==========================

Fork of Laravel integration of joetannenbaum/phpushbullet

v2.0.1(8y ago)178MITPHPPHP &gt;=5.4.0

Since Dec 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/rpsimao/laravel-pushbullet)[ Packagist](https://packagist.org/packages/rpsimao/laravel-pushbullet)[ RSS](/packages/rpsimao-laravel-pushbullet/feed)WikiDiscussions v2.0 Synced 2w ago

READMEChangelog (2)Dependencies (2)Versions (15)Used By (0)

Laravel-PushBullet
==================

[](#laravel-pushbullet)

Fork of

This package is an integration of `joetannenbaum/phpushbullet` library in Laravel 5.

Table of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
- [Listing Devices](#listing-devices)
- [Pushing](#pushing)
    - [To Devices](#to-devices)
    - [To Type of evices](#to-type)
    - [To Users](#to-users)
- [Types](#types)
    - [Notes](#notes)
    - [Links](#links)
    - [Addresses](#addresses)
    - [Lists](#lists)
    - [Files](#files)

Installation
------------

[](#installation)

```
{
    "require": {
        "rpsimao/laravel-pushbullet": "~2.0"
    }
}

```

Add provider in your `app.php`

```
'providers' => array(
    //...
    rpsimao\LaravelPushbullet\LaravelPushbulletServiceProvider::class,
),

```

Add facade in your `app.php`

```
'aliases' => array(
    //...
    'PushBullet' => rpsimao\LaravelPushbullet\LaravelPushbulletFacade::class,
),

```

Set the api key in `config/services.php`

```
  'pushbullet' => [
      'apiKey' => 'MY-APPI-KEY',
  ],

```

If you do not wish to put your access token in your code (understandable), simply set it to the environment variable named `pushbullet.access_token` and set:

```
  'apiKey' => $_ENV['pushbullet.access_token']

```

Listing Devices
---------------

[](#listing-devices)

To list the available devices on your account:

```
PushBullet::devices();
```

This will return an array of objects with all of the device information.

Pushing
-------

[](#pushing)

### To Devices

[](#to-devices)

When pushing a to a device, simply use the device's `nickname` or their `iden` from the list above.

To push to a single device:

```
PushBullet::device('Chrome')->note('Remember', 'Buy some eggs.');
```

To push to multiple devices:

```
PushBullet::device('Chrome')->device('Galaxy S4')->note('Remember', 'Buy some eggs.');
// or
PushBullet::device('Chrome', 'Galaxy S4')->note('Remember', 'Buy some eggs.');
// or using an array
PushBullet::device(['Chrome', 'Galaxy S4'])->note('Remember', 'Buy some eggs.');
// or using a collection
PushBullet::device(Device::all()->pluck('name'))->note('Remember', 'Buy some eggs.');
```

If you want to push to all devices

```
PushBullet::all()->note('Remember', 'Buy some eggs.');
```

### To Type

[](#to-type)

You can select a type of device (ex android)

```
PushBullet::type('android')->note('Remember', 'Buy some eggs.');
// or
PushBullet::type('android')->type('chrome')->note('Remember', 'Buy some eggs.');
// or
PushBullet::type('android', 'chrome')->note('Remember', 'Buy some eggs.');
// or using an array
PushBullet::type(['android', 'chrome'])->note('Remember', 'Buy some eggs.');
// or using a collection
PushBullet::type(Type::all()->pluck('name'))->note('Remember', 'Buy some eggs.');

```

### To Users

[](#to-users)

When pushing a to a user, simply use the user's email address:

To push to a single user:

```
PushBullet::user('joe@example.com')->note('Remember', 'Buy some eggs.');
```

To push to multiple users:

```
PushBullet::user('joe@example.com')->user('anne@example.com')->note('Remember', 'Buy some eggs.');
// or
PushBullet::user('joe@example.com', 'anne@example.com')->note('Remember', 'Buy some eggs.');
// or using an array
PushBullet::user(['joe@example.com', 'anne@example.com'])->note('Remember', 'Buy some eggs.');
// or using a collection
PushBullet::user(User::findMany([1, 2, 3])->pluck('email'))->note('Remember', 'Buy some eggs.');
```

Types
-----

[](#types)

### Notes

[](#notes)

Arguments:

- Title
- Body

```
PushBullet::device('Chrome')->note('Musings', 'Why are fudgy brownies better than cakey brownies?');
```

### Links

[](#links)

Arguments:

- Title
- URL
- Body (optional)

```
PushBullet::device('Chrome')->link('Look It Up', 'http://google.com', 'I hear this is a good site for finding things.');
```

### Addresses

[](#addresses)

Arguments:

- Name
- Address

```
PushBullet::device('Chrome')->address('The Hollywood Sign', '4059 Mt Lee Drive Hollywood, CA 90068');
```

Alternatively, you can pass in an associative array:

```
$address = [
  'address' => '4059 Mt Lee Drive',
  'city'    => 'Hollywood',
  'state'   => 'CA',
  'zip'     => '90068',
];

PushBullet::device('Chrome')->address('The Hollywood Sign', $address);
```

### Lists

[](#lists)

Arguments:

- Title
- Items (array)

```
$items = [
  'Socks',
  'Pants',
  'Keys',
  'Wallet',
];

PushBullet::device('Chrome')->list('Do Not Forget', $items);
```

### Files

[](#files)

Arguments:

- File Name
- File URL (must be publicly available)
- Body (optional)

```
PushBullet::device('Chrome')->file('The Big Presentation', 'http://example.com/do-not-lose-this.pptx', 'Final version of slides.');
```

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~78 days

Recently: every ~148 days

Total

13

Last Release

3284d ago

Major Versions

v0.2 → v1.02015-03-19

v1.1.5 → 2.02017-07-03

### Community

Maintainers

![](https://www.gravatar.com/avatar/b20557c62a96fca9a58d80b11dffbaf4e3debd77d9358c66ed06d413c1e884a7?d=identicon)[rpsimao](/maintainers/rpsimao)

---

Top Contributors

[![lahaxearnaud](https://avatars.githubusercontent.com/u/1364221?v=4)](https://github.com/lahaxearnaud "lahaxearnaud (9 commits)")[![RyanTheAllmighty](https://avatars.githubusercontent.com/u/1723537?v=4)](https://github.com/RyanTheAllmighty "RyanTheAllmighty (5 commits)")[![Max13](https://avatars.githubusercontent.com/u/531249?v=4)](https://github.com/Max13 "Max13 (4 commits)")[![LasseRafn](https://avatars.githubusercontent.com/u/2689341?v=4)](https://github.com/LasseRafn "LasseRafn (2 commits)")[![rpsimao](https://avatars.githubusercontent.com/u/205846?v=4)](https://github.com/rpsimao "rpsimao (1 commits)")

---

Tags

laravelnotificationpushbullet

### Embed Badge

![Health badge](/badges/rpsimao-laravel-pushbullet/health.svg)

```
[![Health](https://phpackages.com/badges/rpsimao-laravel-pushbullet/health.svg)](https://phpackages.com/packages/rpsimao-laravel-pushbullet)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.8M44](/packages/laravel-notification-channels-telegram)[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[propaganistas/laravel-disposable-email

Disposable email validator

6012.9M7](/packages/propaganistas-laravel-disposable-email)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2588.1M15](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M14](/packages/laravel-notification-channels-discord)[gr8shivam/laravel-sms-api

A modern, flexible Laravel package for integrating any SMS gateway with REST API support

10139.9k](/packages/gr8shivam-laravel-sms-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
