Userback
Integrate the Userback feedback widget into your Filament panels. Collect user feedback with customizable authentication options and per-panel configuration.
Author:
Coddin
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
Data Lens
Advanced Data Visualization for Laravel Filament - a premium reporting solution enabling custom column creation, sophisticated filtering, and enterprise-grade data insights within admin panels.
Padmission
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese