PHPackages                             lahaxearnaud/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. lahaxearnaud/laravel-pushbullet

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

lahaxearnaud/laravel-pushbullet
===============================

Laravel integration of joetannenbaum/phpushbullet

2.1.0(6y ago)1624.8k↓100%8[2 issues](https://github.com/lahaxearnaud/laravel-pushbullet/issues)[5 PRs](https://github.com/lahaxearnaud/laravel-pushbullet/pulls)MITPHP

Since Dec 12Pushed 2y ago1 watchersCompare

[ Source](https://github.com/lahaxearnaud/laravel-pushbullet)[ Packagist](https://packagist.org/packages/lahaxearnaud/laravel-pushbullet)[ RSS](/packages/lahaxearnaud-laravel-pushbullet/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (21)Used By (0)

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

[](#laravel-pushbullet)

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

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)

```
$ composer require lahaxearnaud/laravel-pushbullet

```

That's all !

Just don't forget to use the face before using it:

```
use Lahaxearnaud\LaravelPushbullet\Pushbullet;

```

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

40

—

FairBetter than 88% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity37

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 52.8% of commits — single point of failure

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 ~134 days

Recently: every ~316 days

Total

14

Last Release

2424d ago

Major Versions

v0.2 → v1.02015-03-19

v1.2.1 → 2.0.02019-03-01

### Community

Maintainers

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

---

Top Contributors

[![lahaxearnaud](https://avatars.githubusercontent.com/u/1364221?v=4)](https://github.com/lahaxearnaud "lahaxearnaud (19 commits)")[![RyanTheAllmighty](https://avatars.githubusercontent.com/u/1723537?v=4)](https://github.com/RyanTheAllmighty "RyanTheAllmighty (5 commits)")[![insign](https://avatars.githubusercontent.com/u/1113045?v=4)](https://github.com/insign "insign (4 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)")[![KILLME56k](https://avatars.githubusercontent.com/u/1336600?v=4)](https://github.com/KILLME56k "KILLME56k (1 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laravelphppushbulletlaravelnotificationpushbullet

### Embed Badge

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

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

###  Alternatives

[liran-co/laravel-notification-subscriptions

Notification subscription management.

128239.2k1](/packages/liran-co-laravel-notification-subscriptions)[guanguans/laravel-exception-notify

Monitor exception and report to the notification channels(Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

14642.7k1](/packages/guanguans-laravel-exception-notify)[edwardkarlsson/laravel-pushover

A simple, yet very powerful, package that helps you get started with sending push notifications to your iOS or Android device through the pushover.net service.

142.0k](/packages/edwardkarlsson-laravel-pushover)

PHPackages © 2026

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