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

Userback

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

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