Userback plugin screenshot
Dark mode ready
Multilingual support
Supports v5.x

Userback

Community

Integrate the Userback feedback widget into your Filament panels. Collect user feedback with customizable authentication options and per-panel configuration.

Tags: Developer Tool
Supported versions:
4.x
Coddin avatar Author: Coddin

Package health

Beta

Automated checks of this plugin's Composer package

72 / 100
Security 52
Maintenance 100
Ecosystem 88
15 checks
  • Failed: GitHub Actions pinned to SHA View details on Plumb
  • Skipped: GitLab CI includes pinned to SHA
  • Passed: Open security advisories
  • Passed: Dependabot PR responsiveness — No open Dependabot PRs.
  • Skipped: Renovate MR responsiveness
  • Failed: Dependabot or Renovate configured No dependency updater configuration found. View details on Plumb
  • Skipped: Dependency update cooldown configured
  • Failed: Provides a security policy View details on Plumb
  • Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
  • Passed: Commit and release recency — Active: last commit 150 days ago; last release 150 days ago.
  • Passed: composer.lock not committed by library composer.lock is absent from the released dist archive.
  • Passed: Dist archive is lean
  • Warning: Current Laravel version supported — Package does not co-install with current Laravel 13.0; the newest co-installable line is 12.0, which still receives active support but is not the current stable.
  • Passed: Current PHP version supported — Constraint ^8.2 supports current PHP 8.5.
  • Skipped: Current Symfony version supported
Third-party plugin. This is built by the community, not the Filament team. Filament does not review, endorse, or vet the security of plugins outside the filament/ namespace. Review the source and install at your own risk. Found malware or an unresolved security issue the author won't address? Report it .
Powered by Plumb Last scanned 20 hours ago

Documentation

A Filament plugin for integrating Userback feedback widget.

CodeRabbit Pull Request Reviews

#Installation

composer require coddin-web/filament-userback-plugin

#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

#Access Token

Set your Userback access token:

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

#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

MIT License. See LICENSE for more information.

The author

Coddin avatar Author: Coddin

Coddin is a software development company based in the Netherlands, specializing in Laravel and Filament applications.

Plugins
1
Stars
7