PHPackages                             pkboom/laravel-plaid-webhooks - 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. pkboom/laravel-plaid-webhooks

ActiveLibrary

pkboom/laravel-plaid-webhooks
=============================

02PHP

Since May 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/pkboom/laravel-plaid-webhooks)[ Packagist](https://packagist.org/packages/pkboom/laravel-plaid-webhooks)[ RSS](/packages/pkboom-laravel-plaid-webhooks/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Handle Plaid Webhooks in a Laravel application
==============================================

[](#handle-plaid-webhooks-in-a-laravel-application)

Before using this package we highly recommend reading [the entire documentation on webhooks over at Plaid](https://plaid.com/docs/#auth-webhooks).

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

[](#installation)

You can install the package via composer:

```
composer require pkboom/laravel-plaid-webhooks
```

The service provider will automatically register itself.

You must publish the config file with:

```
php artisan vendor:publish --tag="plaid-config"
```

This is the contents of the config file that will be published at `config/stripe-webhooks.php`:

```
return [

    /*
     * You can define the job that should be run when a certain webhook hits your application here.
     *
     * You can find a list of Plaid webhook types here:
     * https://plaid.com/docs/#auth-webhooks
     */
    'jobs' => [
        // 'AUTH' => \App\Jobs\PlaidWebhookCall\AUTH::class,
    ],

    /*
     * The classname of the model to be used. The class should equal or extend
     * Pkboom\PlaidWebhooks\PlaidWebhookCall.
     */
    'model' => Pkboom\PlaidWebhooks\PlaidWebhookCall::class,
];
```

Next, you must create the `plaid_webhook_calls` table:

```
php artisan vendor:publish --tag="plaid-migration"
php artisan migrate
```

Finally, take care of the routing: you must set up Plaid webhooks when you [create an item](https://plaid.com/docs/#creating-items-with-plaid-link). In the routes file of your app you must pass that route to `Route::plaidWebhooks`:

```
Route::plaidWebhooks('webhook-url');
```

Behind the scenes this will register a `POST` route to a controller provided by this package. Because Plaid has no way of getting a csrf-token, you must add that route to the `except` array of the `VerifyCsrfToken` middleware:

```
protected $except = [
    'webhook-url',
];
```

Usage
-----

[](#usage)

For usage, refer to [spatie/laravel-stripe-webhooks](https://github.com/spatie/laravel-stripe-webhooks).

### Testing

[](#testing)

```
composer test
```

License
-------

[](#license)

The MIT License (MIT). Please see [MIT license](http://opensource.org/licenses/MIT) for more information.

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

[![pkboom](https://avatars.githubusercontent.com/u/13960169?v=4)](https://github.com/pkboom "pkboom (2 commits)")

### Embed Badge

![Health badge](/badges/pkboom-laravel-plaid-webhooks/health.svg)

```
[![Health](https://phpackages.com/badges/pkboom-laravel-plaid-webhooks/health.svg)](https://phpackages.com/packages/pkboom-laravel-plaid-webhooks)
```

PHPackages © 2026

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