PHPackages                             coddin-web/filament-userback-plugin - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. coddin-web/filament-userback-plugin

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

coddin-web/filament-userback-plugin
===================================

Userback integration plugin for Filament

1.1.0(2mo ago)3296↓50%MITPHPPHP ^8.2CI passing

Since Jan 3Pushed 2mo agoCompare

[ Source](https://github.com/coddin-web/filament-userback-plugin)[ Packagist](https://packagist.org/packages/coddin-web/filament-userback-plugin)[ RSS](/packages/coddin-web-filament-userback-plugin/feed)WikiDiscussions main Synced 1mo ago

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

Filament Userback Plugin
========================

[](#filament-userback-plugin)

A Filament plugin for integrating [Userback](https://userback.io) feedback widget.

[![CodeRabbit Pull Request Reviews](https://camo.githubusercontent.com/7c1b0b9844d5578b1dc2eb607c753dfef95cb1a76fe1f11954016a98ee49946a/68747470733a2f2f696d672e736869656c64732e696f2f636f64657261626269742f7072732f6769746875622f636f6464696e2d7765622f66696c616d656e742d757365726261636b2d706c7567696e3f75746d5f736f757263653d6f73732675746d5f6d656469756d3d6769746875622675746d5f63616d706169676e3d636f6464696e2d77656225324666696c616d656e742d757365726261636b2d706c7567696e266c6162656c436f6c6f723d31373137313726636f6c6f723d464635373041266c696e6b3d6874747073253341253246253246636f64657261626269742e6169266c6162656c3d436f64655261626269742b52657669657773)](https://camo.githubusercontent.com/7c1b0b9844d5578b1dc2eb607c753dfef95cb1a76fe1f11954016a98ee49946a/68747470733a2f2f696d672e736869656c64732e696f2f636f64657261626269742f7072732f6769746875622f636f6464696e2d7765622f66696c616d656e742d757365726261636b2d706c7567696e3f75746d5f736f757263653d6f73732675746d5f6d656469756d3d6769746875622675746d5f63616d706169676e3d636f6464696e2d77656225324666696c616d656e742d757365726261636b2d706c7567696e266c6162656c436f6c6f723d31373137313726636f6c6f723d464635373041266c696e6b3d6874747073253341253246253246636f64657261626269742e6169266c6162656c3d436f64655261626269742b52657669657773)

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

[](#installation)

```
composer require coddin-web/filament-userback-plugin
```

Usage
-----

[](#usage)

Add the plugin to your Filament panel provider:

```
use CoddinWeb\FilamentUserback\UserbackPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugins([
            UserbackPlugin::make()
                ->accessToken('your-userback-access-token')
                ->userDataUsing(fn () => [
                    'id' => auth()->id(),
                    'info' => [
                        'name' => auth()->user()->name,
                        'email' => auth()->user()->email,
                    ],
                ]),
        ]);
}
```

Configuration
-------------

[](#configuration)

### Access Token

[](#access-token)

Set your Userback access token:

```
UserbackPlugin::make()
    ->accessToken('your-access-token')
```

### User Data

[](#user-data)

Optionally identify logged-in users by providing a callback:

```
UserbackPlugin::make()
    ->userDataUsing(fn () => [
        'id' => auth()->id(),
        'info' => [
            'name' => auth()->user()->name,
            'email' => auth()->user()->email,
        ],
    ])
```

License
-------

[](#license)

MIT License. See [LICENSE](LICENSE) for more information.

###  Health Score

44

—

FairBetter than 91% of packages

Maintenance91

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 86.7% 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 ~54 days

Total

2

Last Release

72d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/51f79bc7bc85a6f14863b7dda6b9083db73244068711b575e46e5c8a3628b054?d=identicon)[falko100](/maintainers/falko100)

---

Top Contributors

[![falko100](https://avatars.githubusercontent.com/u/11974977?v=4)](https://github.com/falko100 "falko100 (13 commits)")[![coderabbitai[bot]](https://avatars.githubusercontent.com/in/347564?v=4)](https://github.com/coderabbitai[bot] "coderabbitai[bot] (1 commits)")[![JurgenCoddin](https://avatars.githubusercontent.com/u/117155652?v=4)](https://github.com/JurgenCoddin "JurgenCoddin (1 commits)")

---

Tags

laravelfeedbackfilamentuserback

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/coddin-web-filament-userback-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/coddin-web-filament-userback-plugin/health.svg)](https://phpackages.com/packages/coddin-web-filament-userback-plugin)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)

PHPackages © 2026

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