All Projects → overtrue → Laravel Emoji

overtrue / Laravel Emoji

😄 This package assist you in getting started with emoji easily.

Projects that are alternatives of or similar to Laravel Emoji

Laravel Emojione
Laravel package to make it easy to use the gorgeous emojis from EmojiOne
Stars: ✭ 133 (-8.9%)
Mutual labels:  laravel, emoji
Laravue
Admin dashboard for enterprise Laravel applications built by VueJS and Element UI https://laravue.dev
Stars: ✭ 1,964 (+1245.21%)
Mutual labels:  laravel
Localization
🌐 Localization package for Laravel
Stars: ✭ 142 (-2.74%)
Mutual labels:  laravel
Laravel Auth0
Laravel plugin for Auth0
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Bkash
PHP client for bKash Payment Gateway API
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Array Redactor
A PHP package to redact array values by their keys.
Stars: ✭ 144 (-1.37%)
Mutual labels:  laravel
Twilio
Twilio notifications channel for Laravel
Stars: ✭ 141 (-3.42%)
Mutual labels:  laravel
Laravel Nuxt Js
Build a SPA with Laravel and Nuxt.
Stars: ✭ 146 (+0%)
Mutual labels:  laravel
Translug
中文的 url slug 支持
Stars: ✭ 145 (-0.68%)
Mutual labels:  laravel
Youtube
Upload a video to a single YouTube channel with Laravel 5.
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Laravel Mailable Test
An artisan command to easily test mailables
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Laravel Paket
Composer GUI. Manage Laravel dependencies from web interface without switching to command line!
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Awesome
A collection of awesome Statamic articles, links, resources and other rad things.
Stars: ✭ 144 (-1.37%)
Mutual labels:  laravel
Neontsunami Laravel
Source for my website and blog
Stars: ✭ 142 (-2.74%)
Mutual labels:  laravel
Laravel Ide Helper
Laravel IDE Helper
Stars: ✭ 11,893 (+8045.89%)
Mutual labels:  laravel
Validation
🔒 Laravel farsi/persian validation
Stars: ✭ 142 (-2.74%)
Mutual labels:  laravel
Laravel Postmark
A Postmark adapter for Laravel
Stars: ✭ 143 (-2.05%)
Mutual labels:  laravel
Laravel Themer
Multi theme support for Laravel application
Stars: ✭ 142 (-2.74%)
Mutual labels:  laravel
React Laravel Boilerplate
A Laravel REST API backend with React/Redux, hot module reloading in development and route-level code splitting
Stars: ✭ 146 (+0%)
Mutual labels:  laravel
Flarum
Simple forum software for building great communities.
Stars: ✭ 12,190 (+8249.32%)
Mutual labels:  laravel

Laravel Emoji

😄 This package assist you in getting started with emoji easily.

Installing

$ composer require overtrue/laravel-emoji

Laravel 5.5 auto-discovery supported.

If you are using < laravel 5.5

Add service provider

Overtrue\LaravelEmoji\EmojiServiceProvider::class,

Add alias

'Emoji' => Overtrue\LaravelEmoji\Emoji::class,

Usage

Emoji::toImage('😄'); // <img class="emojione" alt="&#x1f604;" title="😄" src="https://cdn.jsdelivr.net/emojione/assets/3.1/png/32/1f604.png"/>'
Emoji::toShort('😄'); // 😄
Emoji::shortnameToUnicode('😄'); // 😄

// using helper
// default transform shorname to unicode, you can change it in config file.
emoji('😄'); // 😄

// access emoji services, return \Emojione\Client instance.
app('emoji');
// or 
app(\Emojione\Client::class);

Configurations && emoji images

// config
$ php artisan vendor:publish --provider="Overtrue\\LaravelEmoji\\EmojiServiceProvider" --tag=config

// png images
$ php artisan vendor:publish --provider="Overtrue\\LaravelEmoji\\EmojiServiceProvider" --tag=public

// sprites images
$ php artisan vendor:publish --provider="Overtrue\\LaravelEmoji\\EmojiServiceProvider" --tag=sprites

PHP 扩展包开发

想知道如何从零开始构建 PHP 扩展包?

请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].