PHPackages                             flashadvocate/filament-reactions - 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. flashadvocate/filament-reactions

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

flashadvocate/filament-reactions
================================

Emoji reaction pills for Filament resource pages

v0.2.1(4mo ago)095MITPHPPHP ^8.2

Since Feb 8Pushed 4mo agoCompare

[ Source](https://github.com/flashadvocate/filament-reactions)[ Packagist](https://packagist.org/packages/flashadvocate/filament-reactions)[ RSS](/packages/flashadvocate-filament-reactions/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

Filament Reactions
==================

[](#filament-reactions)

Emoji reaction pills for Filament resource pages. Add lightweight emoji reactions to any Eloquent model and display them as interactive pills on Filament edit/view pages.

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

[](#installation)

```
composer require flashadvocate/filament-reactions
```

Publish and run the migration:

```
php artisan vendor:publish --tag=filament-reactions-migrations
php artisan migrate
```

Setup
-----

[](#setup)

### Register the plugin

[](#register-the-plugin)

Add `FilamentReactionsPlugin` to each Filament panel that needs reactions:

```
use Flashadvocate\FilamentReactions\FilamentReactionsPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugin(FilamentReactionsPlugin::make())
        // ...
}
```

### Prepare your model

[](#prepare-your-model)

Add the `HasReactions` trait to any model you want to be reactable:

```
use Flashadvocate\FilamentReactions\Concerns\HasReactions;

class Post extends Model
{
    use HasReactions;
}
```

### Add to a Filament resource

[](#add-to-a-filament-resource)

Use the `Reactions` Livewire component in your resource form schema:

```
use Flashadvocate\FilamentReactions\Livewire\Reactions;
use Filament\Schemas\Components\Livewire;

public static function form(Schema $schema): Schema
{
    return $schema->components([
        // your fields...
        Livewire::make(Reactions::class),
    ]);
}
```

Configuration
-------------

[](#configuration)

Publish the config file:

```
php artisan vendor:publish --tag=filament-reactions-config
```

```
return [
    // Database table name
    'table' => 'model_reactions',

    // Allowed emoji reactions
    'allowed' => ['👍', '👎', '❤️', '➕'],
];
```

License
-------

[](#license)

MIT

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance74

Regular maintenance activity

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

3

Last Release

145d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7848492?v=4)[Guybrush](/maintainers/flashadvocate)[@flashadvocate](https://github.com/flashadvocate)

---

Top Contributors

[![flashadvocate](https://avatars.githubusercontent.com/u/7848492?v=4)](https://github.com/flashadvocate "flashadvocate (6 commits)")

### Embed Badge

![Health badge](/badges/flashadvocate-filament-reactions/health.svg)

```
[![Health](https://phpackages.com/badges/flashadvocate-filament-reactions/health.svg)](https://phpackages.com/packages/flashadvocate-filament-reactions)
```

###  Alternatives

[leandrocfe/filament-apex-charts

Apex Charts integration for Filament PHP.

4911.6M11](/packages/leandrocfe-filament-apex-charts)[filament/support

Core helper methods and foundation code for all Filament packages.

2331.0M245](/packages/filament-support)[kirschbaum-development/commentions

A package to allow you to create comments, tag users and more

149128.4k](/packages/kirschbaum-development-commentions)[codebar-ag/laravel-filament-json-field

A Laravel Filament JSON Field integration with CodeMirror support

1126.6k](/packages/codebar-ag-laravel-filament-json-field)[noerd/noerd

101.4k6](/packages/noerd-noerd)

PHPackages © 2026

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