PHPackages                             rvxlab/laravel-notification-channel-dailybin - 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. rvxlab/laravel-notification-channel-dailybin

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

rvxlab/laravel-notification-channel-dailybin
============================================

Notification Channel for Dailybin

0.2.0(3mo ago)20[1 issues](https://github.com/RVxLab/laravel-dailybin-notification-channel/issues)MITPHPPHP ^8.2CI passing

Since Feb 16Pushed 3mo agoCompare

[ Source](https://github.com/RVxLab/laravel-dailybin-notification-channel)[ Packagist](https://packagist.org/packages/rvxlab/laravel-notification-channel-dailybin)[ RSS](/packages/rvxlab-laravel-notification-channel-dailybin/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (24)Versions (6)Used By (0)

Laravel Notification Channel for Daily Bin
==========================================

[](#laravel-notification-channel-for-daily-bin)

A notification channel for [Daily Bin](https://dailybin.dev) by [Chris Arter](https://github.com/christopherarter).

Prerequisites
-------------

[](#prerequisites)

- An account on [Daily Bin](https://dailybin.dev)
- A token with at least the following scopes:
    - `ingest:write`

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

[](#installation)

Install using Composer:

```
composer require rvxlab/laravel-notification-channel-dailybin
```

Add this to your `config/services.php`:

```
'dailybin' => [
    'token' => env('DAILYBIN_TOKEN'),
],
```

Set your `DAILYBIN_TOKEN` in your `.env` file:

```
DAILYBIN_TOKEN=YOUR TOKEN GOES HERE
```

### Setting Up Your Notification

[](#setting-up-your-notification)

Add the Daily Bin channel to your notification and set up a `toDailyBin` method:

```
class SomeNotification extends Notification
{
    public function via($notifiable)
    {
        return [DailyBinChannel::class]; // or ['dailyBin']
    }

    public function toDailyBin($notifiable)
    {
        return (new DailyBinMessage())
            ->section('content')
            ->content('# Hello, world!')
            ->source('My App'); // Optional
    }
}
```

Then either make use of anonymous notification or register a notification route:

```
use Illuminate\Support\Facades\Notification;

Notification::route('dailyBin', 'whatever you like')
    ->notify(new SomeNotification());

// OR

use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;

class User extends Model
{
    public function routeNotificationForDailyBin(): string
    {
        return 'whatever you like'; // or false if you don't want to send notifications
    }
}

$user = User::firstOrFail();
$user->notify(new SomeNotification());
```

Contributing
------------

[](#contributing)

Contributions are very welcome. Please read [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines.

License
-------

[](#license)

This package is licensed under the MIT License.

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance69

Regular maintenance activity

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~15 days

Total

3

Last Release

110d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/46111684?v=4)[rvxlab](/maintainers/rvxlab)[@RVxLab](https://github.com/RVxLab)

---

Top Contributors

[![RVxLab](https://avatars.githubusercontent.com/u/46111684?v=4)](https://github.com/RVxLab "RVxLab (11 commits)")

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

### Embed Badge

![Health badge](/badges/rvxlab-laravel-notification-channel-dailybin/health.svg)

```
[![Health](https://phpackages.com/badges/rvxlab-laravel-notification-channel-dailybin/health.svg)](https://phpackages.com/packages/rvxlab-laravel-notification-channel-dailybin)
```

###  Alternatives

[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M167](/packages/spatie-laravel-health)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M203](/packages/laravel-ai)[illuminate/mail

The Illuminate Mail package.

5910.6M503](/packages/illuminate-mail)

PHPackages © 2026

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