xuejd3 / laravel-emoji
An emojione bridge for Laravel
Installs: 25 889
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Requires
- joypixels/emoji-toolkit: ^6.0
This package is auto-updated.
Last update: 2025-03-09 23:27:31 UTC
README
😄 This package assist you in getting started with emoji easily.
Installing
$ composer require xuejd3/laravel-emoji
Laravel auto-discovery supported.
If you are using < laravel 5.5
Add service provider
Xuejd3\LaravelEmoji\EmojiServiceProvider::class,
Add alias
'Emoji' => Xuejd3\LaravelEmoji\Emoji::class,
Usage
Emoji::toImage(':smile:'); // <img class="joypixels" alt="😄" title=":smile:" src="https://cdn.jsdelivr.net/joypixels/assets/5.0/png/unicode/32/1f604.png"> Emoji::toShort('😄'); // :smile: Emoji::shortnameToUnicode(':smile:'); // 😄 // using helper // default transform shorname to unicode, you can change it in config file. emoji(':smile:'); // 😄 // access emoji services, return \JoyPixels\Client instance. app('emoji'); // or app(\JoyPixels\Client::class);
Configurations
// config
$ php artisan vendor:publish --provider="Xuejd3\\LaravelEmoji\\EmojiServiceProvider"
License
MIT