Userback
CommunityIntegrate the Userback feedback widget into your Filament panels. Collect user feedback with customizable authentication options and per-panel configuration.
Author:
Coddin
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Warning:
Current Laravel version supported
—
Package does not co-install with current Laravel
13.0; the newest co-installable line is12.0, which still receives active support but is not the current stable. -
Passed:
Current PHP version supported
—
Constraint
^8.2supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 139 days ago; last release 139 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- 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
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
.
Documentation
A Filament plugin for integrating Userback feedback widget.
#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 is a software development company based in the Netherlands, specializing in Laravel and Filament applications.
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight/Raycast like Command Palette to your Filament Panel.
Dennis Koch
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament