PHPackages                             derjacques/laravel-pipedrive-notification-channel - 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. derjacques/laravel-pipedrive-notification-channel

ActiveLibrary

derjacques/laravel-pipedrive-notification-channel
=================================================

Allows Laravel sites to send notifications to Pipedrive

2.1.1(8y ago)1510MITPHPPHP &gt;=7.0.0

Since Mar 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/DerJacques/laravel-pipedrive-notification-channel)[ Packagist](https://packagist.org/packages/derjacques/laravel-pipedrive-notification-channel)[ RSS](/packages/derjacques-laravel-pipedrive-notification-channel/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (9)Used By (0)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1733186439ee824e93b4af78a1b592b38b825f73610dc83152f9f023e665fea0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6465726a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/derjacques/laravel-pipedrive-notification-channel)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](license.md)[![Build Status](https://camo.githubusercontent.com/91771e46e78d0da4d365a0d1280c036a1ae5dee234ad7e20d195fb2f9e254483/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4465724a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/91771e46e78d0da4d365a0d1280c036a1ae5dee234ad7e20d195fb2f9e254483/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4465724a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)[![Code Coverage](https://camo.githubusercontent.com/8bca927accf43f1f70780e1ff20c931f8757ca18b707f3802289be9f8d7b8241/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4465724a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/8bca927accf43f1f70780e1ff20c931f8757ca18b707f3802289be9f8d7b8241/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f4465724a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2f6d61737465722e7376673f7374796c653d666c61742d737175617265)[![Quality Score](https://camo.githubusercontent.com/972b61cd9c3de9c71fe61791774d69a5cf2baf57f4d5383a1dc4655286791c62/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4465724a6163717565732f6c61726176656c2d7069706564726976652d6e6f74696669636174696f6e2d6368616e6e656c2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/trello)[![StyleCI](https://camo.githubusercontent.com/16b0875b24d80c2710632aaa7ae7b0d98decdeeed5d886657dad8ec72e160344/68747470733a2f2f7374796c6563692e696f2f7265706f732f38363036333930332f736869656c64)](https://styleci.io/repos/86063903)

Laravel Pipedrive Notification Channel
======================================

[](#laravel-pipedrive-notification-channel)

A simple Pipedrive driver for Laravel's notification system.

Features
--------

[](#features)

Currently, the package allows you to easily create and update the following Pipedrive resources:

- Deals
- Activities
- Notes

These resources can easily be linked together, so you can create a deal and attach an activity or note in one easy action.

How to
------

[](#how-to)

In order to install, simply use composer:

`$ composer require derjacques/laravel-pipedrive-notification-channel`

Heres a full example of how to use the notification channel:

```
// app/Notifications/ExampleNotification

use DerJacques\PipedriveNotifications\PipedriveChannel;
use DerJacques\PipedriveNotifications\PipedriveMessage;

class ExampleNotification extends Notification
{

    public function via($notifiable)
    {
        return [PipedriveChannel::class];
    }

    public function toPipedrive($notifiable)
    {
        return
            (new PipedriveMessage())
                ->deal(function ($deal) {
                    $deal->stage(1)
                         ->title('new deal')
                         ->activity(function ($activity) {
                             $activity->subject('Call Jane')
                                      ->type('call');
                         })
                         ->activity(function ($activity) {
                             $activity->id(3)
                                      ->subject('Email Joe')
                                      ->type('mail');
                         })
                         ->note(function ($note) {
                             $note->content('Link to deal');
                         });
                })
                ->activity(function ($activity) {
                    $activity->subject('Buy milk')
                             ->type('shopping')
                             ->due('2017-12-18');
                });
    }
}
```

```
// app/User.php

public function routeNotificationForPipedrive()
{
    return 'YOUR-PIPEDRIVE-KEY';
}
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity63

Established project with proven stability

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

Recently: every ~41 days

Total

8

Last Release

3169d ago

Major Versions

0.2.1 → 1.0.02017-03-28

1.1.0 → 2.1.02017-09-07

PHP version history (2 changes)0.0.1PHP &gt;=5.6.4

0.1.1PHP &gt;=7.0.0

### Community

---

Top Contributors

[![DerJacques](https://avatars.githubusercontent.com/u/3896442?v=4)](https://github.com/DerJacques "DerJacques (62 commits)")

### Embed Badge

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

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

PHPackages © 2026

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