PHPackages                             tapp/filament-webhook-client - 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. [API Development](/categories/api)
4. /
5. tapp/filament-webhook-client

ActiveLibrary[API Development](/categories/api)

tapp/filament-webhook-client
============================

Add a Filament resource and a policy for Spatie Webhook client

v4.1.3(1mo ago)1129.6k↓27.2%4MITPHPPHP ^8.3CI passing

Since Jun 4Pushed 1mo ago4 watchersCompare

[ Source](https://github.com/TappNetwork/filament-webhook-client)[ Packagist](https://packagist.org/packages/tapp/filament-webhook-client)[ Docs](https://github.com/tapp/filament-webhook-client)[ GitHub Sponsors](https://github.com/TappNetwork)[ RSS](/packages/tapp-filament-webhook-client/feed)WikiDiscussions 4.x Synced 2w ago

READMEChangelog (10)Dependencies (56)Versions (16)Used By (0)

Filament Webhook Client Plugin
==============================

[](#filament-webhook-client-plugin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1b43dd265d027ab266bda965bb46576424fd1462bd991aebd01ff55b56170585/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746170702f66696c616d656e742d776562686f6f6b2d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-webhook-client)[![GitHub Tests Action Status](https://github.com/TappNetwork/filament-webhook-client/actions/workflows/run-tests.yml/badge.svg)](https://github.com/TappNetwork/filament-webhook-client/actions/workflows/run-tests.yml/badge.svg)[![GitHub Code Style Action Status](https://github.com/TappNetwork/filament-webhook-client/actions/workflows/fix-php-code-style-issues.yml/badge.svg)](https://github.com/TappNetwork/filament-webhook-client/actions/workflows/fix-php-code-style-issues.yml/badge.svg)[![Total Downloads](https://camo.githubusercontent.com/9907ab3c0d268e0636a470c4886dbceb82a5af64c0cb2b559cffd4be55c8da5f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746170702f66696c616d656e742d776562686f6f6b2d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tapp/filament-webhook-client)

Filament resource and policy for [Spatie Webhook Client](https://github.com/spatie/laravel-webhook-client/).

Version Compatibility
---------------------

[](#version-compatibility)

FilamentFilament Webhook ClientDocumentation4.x/5.x4.xCurrent3.x1.x[Check the docs](https://github.com/TappNetwork/filament-webhook-client/tree/1.x)Installation
------------

[](#installation)

Important

First, make sure you have [Spatie Webhook Client](https://github.com/spatie/laravel-webhook-client/)installed and configured.

You can install the package via Composer:

```
composer require tapp/filament-webhook-client:"^4.0"
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-webhook-client-config"
```

This is the contents of the published config file:

```
return [

    'resources' => [
        'WebhookCallResource' => \Tapp\FilamentWebhookClient\Resources\WebhookCallResource::class,
    ],

    'models' => [
        'webhook-call' => \Spatie\WebhookClient\Models\WebhookCall::class,
    ],

    'policies' => [
        'webhook-call' => \Tapp\FilamentWebhookClient\Policies\WebhookCallPolicy::class,
    ],

    'navigation' => [
        'sort' => 1,
        'icon' => 'heroicon-o-rectangle-stack',
    ],

];
```

Optionally, you can publish the translations file using:

```
php artisan vendor:publish --tag="filament-webhook-client-translations"
```

Usage
-----

[](#usage)

Add this plugin to a panel on `plugins()` method. E.g. in `app/Providers/Filament/AdminPanelProvider.php`:

```
use Tapp\FilamentWebhookClient\FilamentWebhookClientPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            FilamentWebhookClientPlugin::make(),
            //...
        ]);
}
```

#### Appareance

[](#appareance)

Webhook calls resource content example:

[![Filament Webhook Calls resource list](https://raw.githubusercontent.com/TappNetwork/filament-webhook-client/4.x/docs/webhook-calls-resource.png)](https://raw.githubusercontent.com/TappNetwork/filament-webhook-client/4.x/docs/webhook-calls-resource.png)

Webhook calls view content example:

[![Filament Webhook Calls view record](https://raw.githubusercontent.com/TappNetwork/filament-webhook-client/4.x/docs/webhook-calls-view.png)](https://raw.githubusercontent.com/TappNetwork/filament-webhook-client/4.x/docs/webhook-calls-view.png)

Webhook Call Policy
-------------------

[](#webhook-call-policy)

By default, the policy included in this plugin allows you to view the list of webhook calls and an individual webhook call. If you need to change the permissions, you can override the policy by creating a policy in you project and adding it on `policies -> webhook-call` entry on `filament-webhook-client.php` config file.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover any security-related issues, please email .

Credits
-------

[](#credits)

- [Tapp Network](https://github.com/TappNetwork)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

56

—

FairBetter than 97% of packages

Maintenance91

Actively maintained with recent releases

Popularity37

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity64

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

Recently: every ~26 days

Total

12

Last Release

44d ago

Major Versions

v1.1.0 → v4.0.02025-08-13

1.x-dev → v4.0.12026-01-20

PHP version history (2 changes)v1.0.0PHP ^8.2

v4.1.0PHP ^8.3

### Community

Maintainers

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

![](https://avatars.githubusercontent.com/u/7796074?v=4)[Scott Grayson](/maintainers/scottgrayson)[@scottgrayson](https://github.com/scottgrayson)

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

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

---

Top Contributors

[![andreia](https://avatars.githubusercontent.com/u/38911?v=4)](https://github.com/andreia "andreia (30 commits)")[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (21 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (13 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")[![paulhennell](https://avatars.githubusercontent.com/u/4799852?v=4)](https://github.com/paulhennell "paulhennell (2 commits)")[![thyseus](https://avatars.githubusercontent.com/u/654271?v=4)](https://github.com/thyseus "thyseus (1 commits)")

---

Tags

laravelwebhookfilamenttapp networkwebhook-client

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tapp-filament-webhook-client/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-filament-webhook-client/health.svg)](https://phpackages.com/packages/tapp-filament-webhook-client)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.2k12.6M140](/packages/dedoc-scramble)[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

316.8k2](/packages/finity-labs-fin-mail)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17861.9k3](/packages/stephenjude-filament-jetstream)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16429.7k](/packages/backstage-mails)[tapp/filament-maillog

Filament plugin to view outgoing mail

3076.0k1](/packages/tapp-filament-maillog)

PHPackages © 2026

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