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.1(2mo ago)1127.3k↓34.4%3MITPHPPHP ^8.3CI passing

Since Jun 4Pushed 2w 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 2d ago

READMEChangelog (9)Dependencies (42)Versions (14)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

Maintenance92

Actively maintained with recent releases

Popularity37

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity63

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

Recently: every ~37 days

Total

10

Last Release

14d 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 (16 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)")[![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.

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

Automatic generation of API documentation for Laravel applications.

2.1k11.2M100](/packages/dedoc-scramble)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M47](/packages/spatie-laravel-pdf)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.6k3](/packages/defstudio-telegraph)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274326.6k8](/packages/croustibat-filament-jobs-monitor)

PHPackages © 2026

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