Laravel Identicon Package - Extends Identicon Library and Adds Support for Seamless Usage with Laravel.
$ composer require irazasyed/laravel-identicon
This Package adds Laravel Support to Identicon PHP Library. It simply extends the library as well as optimized for usage with Laravel. So all the methods listed here are available and will work seamlessly.
Generate and Display an identicon image:
Identicon::displayImage('foo');
Generate and get the image data
$imageData = Identicon::getImageData('bar');
Generate and get the base 64 image uri ready for integrate into an HTML img tag. The below example is using blade templating
<img src="{{ Identicon::getImageDataUri('bar') }}" alt="bar Identicon" />
...
And all the other remaining methods from the main library.
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email syed at lukonet.com
instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.