PHPackages                             imjonos/laravel-emoji-reaction - 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. imjonos/laravel-emoji-reaction

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

imjonos/laravel-emoji-reaction
==============================

Laravel emoji reaction package

016PHP

Since Feb 7Pushed 3y ago1 watchersCompare

[ Source](https://github.com/imjonos/laravel-emoji-reaction)[ Packagist](https://packagist.org/packages/imjonos/laravel-emoji-reaction)[ RSS](/packages/imjonos-laravel-emoji-reaction/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Emoji Reactions
=======================

[](#laravel-emoji-reactions)

v0.1a - test version
--------------------

[](#v01a---test-version)

[![img.png](img.png)](img.png)

Based on Unicode emoji characters. The default list can be find in the config file.

Full unicode emojis list:

Live Demo:

Code example and usage:

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

[](#installation)

Via Composer

```
$ composer require imjonos/laravel-emoji-reaction
```

```
$ php artisan vendor:publish --provider="Nos\EmojiReaction\EmojiReactionServiceProvider"
```

```
$ php artisan migrate
```

Usage
-----

[](#usage)

Front-end component example

Back-end part

```
    //Model

    use Nos\EmojiReaction\Interfaces\Models\EmojiReactionInterface;
    use Nos\EmojiReaction\Traits\HasEmojiReactionTrait;

    final class Post extends Model implements EmojiReactionInterface
    {
        use HasEmojiReactionTrait;
    ...

    // Routes
    Route::post('/posts/{post}/emoji-reactions', [\App\Http\Controllers\PostController::class, 'addEmojiReaction'])->name(
        'site.posts.add-emoji-reaction'
    );
    Route::get('/posts/{post}/emoji-reactions', [\App\Http\Controllers\PostController::class, 'getEmojiReactionStatistic']
    )->name(
        'site.posts.get-emoji-reaction-statistic'
    );

    //Controller
    public function getEmojiReactionStatistic(Post $post): JsonResponse
    {
        return response()->json($this->reactionStatisticService->getByModel($post));
    }

    /**
     * @throws Exception
     */
    public function addEmojiReaction(AddEmojiReactionRequest $request, Post $post): JsonResponse
    {
        $emoji = $this->emojiService->find($request->get('emoji_id'));
        abort_if(!$emoji, 400);

        DB::transaction(function () use ($post, $request, $emoji) {
            $this->reactionService->addReaction($post, $emoji);
        });

        return response()->json();
    }

```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/a691ecb149ac661add3a6229e3c545aaaa40bad4ae0fa9c0ad9464c79e86ff20?d=identicon)[Eugeny Nosenko](/maintainers/Eugeny%20Nosenko)

### Embed Badge

![Health badge](/badges/imjonos-laravel-emoji-reaction/health.svg)

```
[![Health](https://phpackages.com/badges/imjonos-laravel-emoji-reaction/health.svg)](https://phpackages.com/packages/imjonos-laravel-emoji-reaction)
```

###  Alternatives

[myxtype/eos-client

php eos client offline sign eosphp-ecc

462.1k](/packages/myxtype-eos-client)[helori/laravel-seo

SEO tools to insert meta and structured-data in laravel projects

134.9k](/packages/helori-laravel-seo)

PHPackages © 2026

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