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
13 checks
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 13 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