PHPackages                             martinpetricko/filament-sentry-feedback - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. martinpetricko/filament-sentry-feedback

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

martinpetricko/filament-sentry-feedback
=======================================

FilamentPHP package that integrates Sentry User Feedback

2.1.0(3mo ago)99.7k↓28.3%4[2 PRs](https://github.com/MartinPetricko/filament-sentry-feedback/pulls)MITPHPPHP ^8.2CI passing

Since Apr 10Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/MartinPetricko/filament-sentry-feedback)[ Packagist](https://packagist.org/packages/martinpetricko/filament-sentry-feedback)[ Docs](https://github.com/martinpetricko/filament-sentry-feedback)[ GitHub Sponsors](https://github.com/MartinPetricko)[ RSS](/packages/martinpetricko-filament-sentry-feedback/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (9)Versions (8)Used By (0)

Filament Sentry Feedback
========================

[](#filament-sentry-feedback)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ac2f9518c25b4dd42c2d7938ab432362cba2051cc1f424227890e614e5633a7f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d617274696e7065747269636b6f2f66696c616d656e742d73656e7472792d666565646261636b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/martinpetricko/filament-sentry-feedback)[![GitHub Tests Action Status](https://camo.githubusercontent.com/85bf4cccba7acfc76ffd18c652c06df74365a4c7ff42c221c704c54ceee5a18a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d617274696e7065747269636b6f2f66696c616d656e742d73656e7472792d666565646261636b2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/martinpetricko/filament-sentry-feedback/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/58a2f25b27f446ed4f5dc30d0bd82d14509c27624451b2688fd8fc9cb508311e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d617274696e7065747269636b6f2f66696c616d656e742d73656e7472792d666565646261636b2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/MartinPetricko/filament-sentry-feedback/actions?query=workflow%3A%22Fix+PHP+Code+Styling%22branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/2e65dce1bf3f915b70a92026cbaeae6343609af950f671151997b9199dcd9bc3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d617274696e7065747269636b6f2f66696c616d656e742d73656e7472792d666565646261636b2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/martinpetricko/filament-sentry-feedback)

Filament Sentry Feedback integrates the [Sentry User Feedback](https://sentry.io/for/user-feedback/) widget with [FilamentPHP](https://filamentphp.com/).

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require martinpetricko/filament-sentry-feedback
```

If you'd like to customize the translations used by the package, you can publish the language files:

```
php artisan vendor:publish --tag="filament-sentry-feedback-translations"
```

Optionally, publish the config file:

```
php artisan vendor:publish --tag="filament-sentry-feedback-config"
```

These are the contents of the published config file:

```
return [
    /**
    * https://docs.sentry.io/concepts/key-terms/dsn-explainer/#where-to-find-your-data-source-name-dsn
    */
    'dsn' => env('SENTRY_LARAVEL_DSN', env('SENTRY_DSN')),

    /**
    * https://docs.sentry.io/platforms/javascript/user-feedback/configuration/
    */
    'widget' => [
        'element_id' => 'sentry-feedback',
        'color_scheme' => ColorScheme::Auto,
        'show_branding' => false,
        'show_name' => true,
        'is_name_required' => false,
        'show_email' => true,
        'is_email_required' => true,
        'enable_screenshot' => true,
    ],
];
```

Set your [Sentry DSN](https://docs.sentry.io/concepts/key-terms/dsn-explainer/#where-to-find-your-data-source-name-dsn) in the `.env` file:

```
SENTRY_LARAVEL_DSN=https://examplePublicKey@o0.ingest.sentry.io/0
```

Register the plugin in your Filament panel:

```
->plugins([
    \MartinPetricko\FilamentSentryFeedback\FilamentSentryFeedbackPlugin::make(),
])
```

You can preload authenticated user data for Sentry Feedback widget by defining SentryUser entity:

```
->plugins([
    \MartinPetricko\FilamentSentryFeedback\FilamentSentryFeedbackPlugin::make()
        ->sentryUser(function (): ?SentryUser {
            return new SentryUser(auth()->user()->name, auth()->user()->email);
        }),
])
```

You can override the global config per panel:

```
->plugins([
    \MartinPetricko\FilamentSentryFeedback\FilamentSentryFeedbackPlugin::make()
        ->dsn('https://examplePublicKey@o0.ingest.sentry.io/0')
        ->elementId('sentry-feedback')
        ->colorScheme(ColorScheme::Auto)
        ->showBranding(true)
        ->showName(true)
        ->isNameRequired(true)
        ->showEmail(true)
        ->isEmailRequired(true)
        ->enableScreenshot(true),
])
```

### CSS Customization

[](#css-customization)

To customize the appearance of the feedback widget:

1. [Create a custom theme](https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme) for your panel.
2. Override the Sentry Feedback widget's [CSS variables](https://docs.sentry.io/platforms/javascript/user-feedback/configuration/#css-customization)

Testing
-------

[](#testing)

```
composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Martin Petricko](https://github.com/MartinPetricko)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

48

—

FairBetter than 95% of packages

Maintenance79

Regular maintenance activity

Popularity33

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~57 days

Recently: every ~64 days

Total

6

Last Release

113d ago

Major Versions

1.x-dev → 2.0.02025-06-19

### Community

Maintainers

![](https://www.gravatar.com/avatar/db681d8ae9e45ba4eb11da5407129930a1cfdc321a7f76f3ab5a3a4fb7a2146d?d=identicon)[MartinPetricko](/maintainers/MartinPetricko)

---

Top Contributors

[![MartinPetricko](https://avatars.githubusercontent.com/u/39132866?v=4)](https://github.com/MartinPetricko "MartinPetricko (22 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![lloricode](https://avatars.githubusercontent.com/u/8251344?v=4)](https://github.com/lloricode "lloricode (1 commits)")

---

Tags

feedbackfilamentlaravelsentrylaravelsentryfeedbackfilamentMartinPetrickofilament-sentry-feedback

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/martinpetricko-filament-sentry-feedback/health.svg)

```
[![Health](https://phpackages.com/badges/martinpetricko-filament-sentry-feedback/health.svg)](https://phpackages.com/packages/martinpetricko-filament-sentry-feedback)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
