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(3mo ago)023MITPHPPHP ^8.2

Since Feb 8Pushed 3mo 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 1mo ago

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

36

—

LowBetter than 82% of packages

Maintenance82

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity38

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

92d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/700dbbd6d042031c6501004d51d6f520b7e2855f0930a4c60123acdf284b3252?d=identicon)[flashadvocate](/maintainers/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.

4861.2M8](/packages/leandrocfe-filament-apex-charts)[spatie/laravel-livewire-wizard

Build wizards using Livewire

4061.0M4](/packages/spatie-laravel-livewire-wizard)[kirschbaum-development/commentions

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

12369.2k](/packages/kirschbaum-development-commentions)[ralphjsmit/livewire-urls

Get the previous and current url in Livewire.

82270.3k4](/packages/ralphjsmit-livewire-urls)[codebar-ag/laravel-filament-json-field

A Laravel Filament JSON Field integration with CodeMirror support

1124.1k](/packages/codebar-ag-laravel-filament-json-field)[defstudio/filament-column-length-limiter

Limit Filament columns length showing a tooltip when text exceeds

126.2k](/packages/defstudio-filament-column-length-limiter)

PHPackages © 2026

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