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.1(2w ago)913.9k↑45.3%4[1 PRs](https://github.com/MartinPetricko/filament-sentry-feedback/pulls)MITPHPPHP ^8.2CI passing

Since Apr 10Pushed 1w 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 3d ago

READMEChangelog (6)Dependencies (18)Versions (11)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

54

—

FairBetter than 96% of packages

Maintenance97

Actively maintained with recent releases

Popularity35

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65.8% 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 ~71 days

Recently: every ~90 days

Total

7

Last Release

19d ago

Major Versions

1.x-dev → 2.0.02025-06-19

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/39132866?v=4)[Martin Petričko](/maintainers/MartinPetricko)[@MartinPetricko](https://github.com/MartinPetricko)

---

Top Contributors

[![MartinPetricko](https://avatars.githubusercontent.com/u/39132866?v=4)](https://github.com/MartinPetricko "MartinPetricko (25 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 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

[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[stephenjude/filament-feature-flags

Filament implementation of feature flags and segmentation with Laravel Pennant.

122177.8k1](/packages/stephenjude-filament-feature-flags)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17760.2k3](/packages/stephenjude-filament-jetstream)[stephenjude/filament-two-factor-authentication

Filament Two Factor Authentication: Google 2FA + Passkey Authentication

84215.9k9](/packages/stephenjude-filament-two-factor-authentication)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k1](/packages/marcelweidum-filament-passkeys)

PHPackages © 2026

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